Getting Started
Create Nom App is a zero-config tool to develop, test, and build Node modules.
Quick Start
You can run Create Nom App with any of npm
, yarn
, or npx
.
npx create-nom-app hello-world
yarn create nom-app hello-world
npm init nom-app hello-world
Structure
hello-world
├── .gitignore
├── .npmignore
├── package.json
├── README.md
├── node_modules
├── src
│ └── index.js
└── tests
└── index.spec.js
Scripts
Start
Builds your app in development mode. You will be reported of any errors with your code.
yarn start
npm start
Test
Runs unit tests.
yarn test
npm test
Build
Builds your app for use in production environments.
yarn build
npm run build