Create a new application
Before we will create a new application, you must install the latest Node.js (v15 is minimal required).
There are three ways to create a new application. First using npx and second using classical package managers.
1. Using NPXβ
npx init create-ness-app@latest my-new-app
cd my-new-app
npm run start
Recommended usage!
We recommend using the following package manager, because it will automatically use the latest version of create-ness-app
which can contain bug fixes and other features added.
2. Using NPMβ
Run the following commands:
npm install -g create-ness-app@latest
create-ness-app my-new-app
cd my-new-app
npm run start
3. Using Yarnβ
Run the following commands:
yarn global add create-ness-app@latest
create-ness-app my-new-app
cd my-new-app
yarn start