Comment on page
Generating a New Project
To generate a new React component in island-ui-core.
yarn generate @nx/react:component MyComponent --project=island-ui-core
To generate a simple React application:
yarn generate @nx/react:app my-app
To get a React application with server-side-rendering, we recommend using Next.JS:
yarn generate @nx/next:app my-app
To create a service, you can get started with NestJS like this:
yarn generate @nx/nest:app services/my-service
To generate a React library.
yarn generate @nx/react:lib my-lib --linter eslint
To create a NestJS module:
yarn generate @nx/nest:lib my-lib
To create a JS library that can be used both on the frontend and the backend:
yarn generate @nx/node:lib my-lib
Libraries are sharable across libraries and applications. They can be imported from
@island.is/my-lib
.Applications and libraries can be structured in a hierarchy using subfolders:
yarn generate @nx/node:lib common/my-lib
# Imported from '@island.is/common/my-lib'
Using the
sequelize-cli
we support version controlled migrations that keep track of changes to the database.yarn nx run <project>:migrate/generate
yarn nx run <project>:migrate