Skip to content

virtualitems/typescript-hexagonal

Repository files navigation

My Typescript Hexagonal Architecture

Linking a local package

Note: The lib-name is the name of the package in the package.json file.

  1. In the library's package.json directory
npm link
  1. In the host project directory
npm link lib-name

Deleting a link

  1. unlink the package
npm unlink lib-name
  1. remove the link
npm rm --global lib-name