# create-kvell-app

> Command line tool to setup Node.js applications

Latest version **1.0.1-alpha.9.3.1** (published 2020-04-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install create-kvell-app
pnpm add create-kvell-app
yarn add create-kvell-app
bun add create-kvell-app
```

Provides the command `create-kvell-app`.

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1-alpha.9.3.1 |
| Published | 2020-04-08 |
| First published | 2019-12-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 9 |
| Unpacked size | 15.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 17 |
| Author | Neeraj Sharma |
| Maintainers | nsharma1396 |
| Keywords | create-node-app, create-kvell-app, node app, node |

## Links

- npm: https://www.npmjs.com/package/create-kvell-app
- Repository: https://github.com/nsharma1396/kvell/tree/master/packages/create-kvell-app
- Homepage: https://kvelljs.now.sh/
- npm.io page: https://npm.io/package/create-kvell-app

## Dependencies (9)

- [arg](https://npm.io/package/arg.md) ^4.1.1
- [esm](https://npm.io/package/esm.md) ^3.2.25
- [chalk](https://npm.io/package/chalk.md) ^4.0.0
- [eslint](https://npm.io/package/eslint.md) ^6.7.1
- [fs-extra](https://npm.io/package/fs-extra.md) ^9.0.0
- [cross-spawn](https://npm.io/package/cross-spawn.md) ^7.0.1
- [babel-eslint](https://npm.io/package/babel-eslint.md) ^10.0.3
- [eslint-plugin-node](https://npm.io/package/eslint-plugin-node.md) ^11.0.0
- [validate-npm-package-name](https://npm.io/package/validate-npm-package-name.md) ^3.0.0

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 1.0.1-alpha.9.3.1 (latest) — 2020-04-08
- 1.0.1-alpha.9.1 — 2020-04-04
- 1.0.1-alpha.9 — 2020-04-03
- 1.0.1-alpha.8.1 — 2020-03-16
- 1.0.1-alpha.8 — 2020-03-12
- 1.0.1-alpha.7 — 2020-02-06
- 1.0.1-alpha.6 — 2020-02-05
- 1.0.1-alpha.5.2 — 2020-01-19
- 1.0.1-alpha.5.1 — 2020-01-19
- 1.0.1-alpha.5 — 2020-01-19
- 1.0.1-1.0.1-alpha.5.0 — 2020-01-19
- 1.0.1-alpha.2 — 2020-01-02
- 1.0.1-alpha.1 — 2019-12-20
- 1.0.1-alpha.0 — 2019-12-18
- 1.0.0-alpha.0 — 2019-12-18

## README

# Create-kvell-app

## Creating an application

To setup a kvell application, you just need to run the following command

```sh
npx create-kvell-app example-app
```

![create an application](https://github.com/nsharma1396/kvell/blob/master/website/docs/assets/create-app.gif?raw=true)


**Note**: [npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) comes with npm 5.2+ and higher. If you use npm 5.1 or earlier, you need to install `create-kvell-app` globally instead:


```sh
npm i -g create-kvell-app
```

Once installed, you can create a kvell application by running:

```sh
create-kvell-app example-app
```

## Running the server

Now, you can change your directory to `example-app` and run the application in `development` mode by running:

```sh
cd example-app
npm start
```

That's it! This will start your server on [http://localhost:5001](http://localhost:5001).

![starting the server](https://github.com/nsharma1396/kvell/blob/master/website/docs/assets/start-server.gif?raw=true)

## Optional Installation Method

You can also create an application using the `npm init` script.

```sh
npm init kvell-app example-app
```

For complete docs of Kvell, visit [Kvell Docs](https://kvelljs.now.sh/)

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