neehaaryx v1.5.11
Create neeharyx App
Create neeharyx apps with predefined configurations.
- Creating an App – How to create a new app.
Create neeharyx App works on macOS, Windows, and Linux.
Quick Overview
npx create-neeharyx-app my-app
cd my-app
npm start -- --consoleCreating an App
To create a new app, you may choose one of the following methods:
npx
npx create-neeharyx-app my-appnpm
npm init neeharyx-app my-appnpm init <initializer> is available in npm 6+
Yarn
yarn create neeharyx-app my-appyarn create is available in Yarn 0.25+
It will create a directory called my-app inside the current folder.
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── .env
├── .env.example
├── neeharyx.config.js
├── index.js
└── src
├── index.test.js
└── index.jsOnce the installation is done, you can open your project folder:
cd my-appInside the newly created project, you can run some built-in commands:
npm start or yarn start
Runs the app in production mode. By default, server runs on http://localhost:5000.
To run in Console Mode, provide the --console option:
npm start -- --console
yarn start --consolenpm run dev or yarn dev
Runs the app in development mode. The bot will automatically reload if you make changes to the code. By default, server runs on http://localhost:5000 and ngrok runs on http://localhost:4040.
provide the --console option:
npm run dev -- --console
yarn dev --consolenpm run lint or yarn lint
Runs the linter rules using Eslint.
npm test or yarn test
Runs the test cases using Jest.
What’s Included?
Your environment will have everything you need to build a modern neeharyx app: