# monopod-bootstrap **Wire up your monorepo**   ## Synopsis ```sh monopod bootstrap [--scope=] [] monopod bootstrap --help ```   ## Description When you call `monopod bootstrap`, we’ll wire up your monorepo. Firstly, we’ll create a symlink at the root `/node_modules/@` so that your packages have access to one another. Then we’ll add symlinks at `packages/*/node_modules` pointing at the root `/node_modules/` so that npm knows its way inside a package. Remember to run `monopod bootstrap` after the initial `npm install` and every time you add a new package at `packages/`. By the way, don’t worry about calling it multiple times – the results are always the same.   ## Options #### `[path]` The path to your monorepo. Should contain a `packages` subdirectory. Default: `$(pwd)`. #### `-s, --scope` The npm scope of all packages in your monorepo. Default: `$(basename "$path")`. #### `-h, --help` You’re looking at it.   ## License [MIT](https://git.io/monopod.License) © [Studio B12](http://studio-b12.de)