--- sidebar_position: 9 sidebar_label: Local Linking --- # Introduction Local linking allows you to develop and test a library in the context of an application before it's published or when you encounter a bug that you suspect is related to a library. With Yarn, this can be achieved through the yarn link command. The general procedure is as follows: Link the Library: ```sh cd /path/to/library yarn link ``` This command will create a symlink in a global directory for the library. Link to the Application: ```sh cd /path/to/application yarn link "library-name" ``` Creates a symlink from the global directory to the application's node_modules. # Tutorial for linking Cornerstone3D to OHIF Below we demonstrate how to link Cornerstone3D to OHIF Viewer. This is useful for testing and debugging Cornerstone3D in the context of OHIF Viewer.