# naludo

> Nest is a powerful web framework for [Node.js](http://nodejs.org), which helps you effortlessly build efficient, scalable applications. It uses modern JavaScript, is built with [TypeScript](http://www.typescriptlang.org) and combines best concepts of both

Latest version **1.0.5** (published 2018-02-11) · MIT license · 0 weekly downloads

## Install

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

Provides the command `naludo`.

## 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.5 |
| Published | 2018-02-11 |
| First published | 2018-02-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 273.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | richard |
| Maintainers | richard-id |

## Links

- npm: https://www.npmjs.com/package/naludo
- Repository: https://github.com/idea100/naludo
- Homepage: https://github.com/idea100/naludo#readme
- Issues: https://github.com/idea100/naludo/issues
- npm.io page: https://npm.io/package/naludo

## Dependencies (3)

- [caporal](https://npm.io/package/caporal.md) ^0.6.0
- [nodemon](https://npm.io/package/nodemon.md) ^1.12.1
- [os-name](https://npm.io/package/os-name.md) ^2.0.1

## Recent versions

- 1.0.5 (latest) — 2018-02-11
- 1.0.2 — 2018-02-11
- 1.0.1 — 2018-02-09
- 1.0.0 — 2018-02-08

## README

## Description

Nest is a powerful web framework for [Node.js](http://nodejs.org), which helps you effortlessly build efficient, scalable applications. It uses modern JavaScript, is built with [TypeScript](http://www.typescriptlang.org) and combines best concepts of both OOP (Object Oriented Progamming) and FP (Functional Programming).

It is not just another framework. You do not have to wait for a large community, because Nest is built with awesome, popular well-known libraries - [Express](https://github.com/expressjs/express) and [socket.io](https://github.com/socketio/socket.io)! It means, that you could quickly start using framework without worrying about a third party plugins.

The CLI tool helps to create, manage application architecture entities, build and run your project. 

## Installation
### npm :

```npm install -g naludo```

## nestconfig.json
The nestconfig.json is here to manage the CLI execution like asset generation.
```json
{
    "language": "ts | es (default: ts)",
    "entryFile": "src/main.ts"
}
```

## Commands
### new
Usage :
   `$ naludo new <name> [destination] --<repository>`
    
Examples : 
   * `$ naludo new my-app`
   * `$ naludo new my-app myapp/`
   * `$ naludo new my-app --repository https://github.com/ThomRick/nest-typescript-starter`
   * `$ naludo new my-app --r https://github.com/ThomRick/nest-typescript-starter`
   * `$ naludo new my-app myapp --r https://github.com/ThomRick/nest-typescript-starter`

Creates a new Nest application by cloning `https://github.com/nestjs/nest-typescript-starter` Git repository.
It add default nestconfig.json file if it does not exist.

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