An open API service indexing awesome lists of open source software.

https://github.com/sudipstha08/lerna

lerna :star:
https://github.com/sudipstha08/lerna

atomic-design axios lerna monorepo nextjs react-query styled-components typescript yarn

Last synced: about 1 year ago
JSON representation

lerna :star:

Awesome Lists containing this project

README

          


Lerna



A tool for managing JavaScript projects with multiple packages :fire:

## commands :wrench:
| commands | description |
|---------------------|----------------------------|
| `npx lerna init` | init lerna |
| `lerna create` | create a package |
| `yarn bootstrap` | install dependencies |
| `yarn package:user` | runs user server :running: |
| `yarn remove` | removes a package |

## Tech Stacks :tada:
| tech | description |
|---------------|--------------------------|
| `next` | server side rendering |
| `react-query` | data fetching library |
| `lerna` | multi-package repos |
| `axios` | HTTP client |
| `typescript` | type system for JS |
| `styled-components` | CSS in JS |

## Add npm packages to the specific lerna package :heavy_plus_sign:
```sh
$ lerna add next-compose-plugins --scope=user
$ lerna add next-transpile-modules --scope '{admin,user}'
```

## REFERENCES :books:
1. https://medium.com/wesionary-team/creating-next-js-monorepo-d41ea78f4afb

1. TypeError: Cannot read property 'concat' of undefined
| `yarn --frozen-lockfile`