# neehaaryx

> Create neeharyx apps with predefined configurations.

Latest version **1.5.11** (published 2023-04-05) · 0 weekly downloads

## Install

```sh
npm install neehaaryx
pnpm add neehaaryx
yarn add neehaaryx
bun add neehaaryx
```

Provides the command `create-bottender-app`.

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.5.11 |
| Published | 2023-04-05 |
| First published | 2023-04-05 |
| Weekly downloads | 0 |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 14 |
| Unpacked size | 46.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | aryabhai |

## Links

- npm: https://www.npmjs.com/package/neehaaryx
- npm.io page: https://npm.io/package/neehaaryx

## Dependencies (14)

- [chalk](https://npm.io/package/chalk.md) ^4.1.2
- [envinfo](https://npm.io/package/envinfo.md) ^7.8.1
- [figures](https://npm.io/package/figures.md) ^3.0.0
- [fs-extra](https://npm.io/package/fs-extra.md) ^9.1.0
- [inquirer](https://npm.io/package/inquirer.md) ^8.1.5
- [prettier](https://npm.io/package/prettier.md) ^2.4.1
- [commander](https://npm.io/package/commander.md) ^4.1.1
- [@types/node](https://npm.io/package/@types/node.md) ^16.10.2
- [cross-spawn](https://npm.io/package/cross-spawn.md) ^7.0.3
- [@types/figures](https://npm.io/package/@types/figures.md) ^3.0.1
- [@types/fs-extra](https://npm.io/package/@types/fs-extra.md) ^9.0.13
- [@types/inquirer](https://npm.io/package/@types/inquirer.md) ^7.3.3
- [@types/cross-spawn](https://npm.io/package/@types/cross-spawn.md) ^6.0.2
- [validate-npm-package-name](https://npm.io/package/validate-npm-package-name.md) ^3.0.0

## Recent versions

- 1.5.11 (latest) — 2023-04-05
- 1.5.10 — 2023-04-05
- 1.5.9 — 2023-04-05
- 1.5.8 — 2023-04-05
- 1.5.7 — 2023-04-05
- 1.5.6 — 2023-04-05

## README

# Create neeharyx App

Create neeharyx apps with predefined configurations.

- [Creating an App](#creating-an-app) – How to create a new app.

Create neeharyx App works on macOS, Windows, and Linux.

## Quick Overview

```sh
npx create-neeharyx-app my-app
cd my-app
npm start -- --console
```

## Creating an App

To create a new app, you may choose one of the following methods:

### npx

```sh
npx create-neeharyx-app my-app
```



### npm

```sh
npm init neeharyx-app my-app
```

_`npm init <initializer>` is available in npm 6+_

### Yarn

```sh
yarn create neeharyx-app my-app
```

_`yarn create` is available in Yarn 0.25+_

It will create a directory called `my-app` inside the current folder.<br>
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.js
```

Once the installation is done, you can open your project folder:

```sh
cd my-app
```

Inside the newly created project, you can run some built-in commands:

### `npm start` or `yarn start`

Runs the app in production mode.<br>
By default, server runs on [http://localhost:5000](http://localhost:5000).

To run in [Console Mode](https://neeharyx.js.org/docs/the-basics-console-mode), provide the `--console` option:

```sh
npm start -- --console
yarn start --console
```

### `npm run dev` or `yarn dev`

Runs the app in development mode.<br>
The bot will automatically reload if you make changes to the code.<br>
By default, server runs on [http://localhost:5000](http://localhost:5000) and ngrok runs on [http://localhost:4040](http://localhost:4040).

 provide the `--console` option:

```sh
npm run dev -- --console
yarn dev --console
```

### `npm run lint` or `yarn lint`

Runs the linter rules using [Eslint](https://eslint.org/).

### `npm test` or `yarn test`

Runs the test cases using [Jest](https://jestjs.io/).

## What’s Included?

Your environment will have everything you need to build a modern neeharyx app:

- neeharyx, ES6+ and TypeScript syntax support.
- A unit test runner - [Jest](https://jestjs.io/) with built-in support for coverage reporting.
- A JavaScript linter - [Eslint](https://eslint.org/) with some predefined rules.
- A live development server that warns about common mistakes.

---
_Source: https://npm.io/package/neehaaryx · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
