# shino

> Shino' application generator

Latest version **0.0.7** (published 2018-12-04) · MIT license · 0 weekly downloads

## Install

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

Provides the command `shino`.

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.7 |
| Published | 2018-12-04 |
| First published | 2018-04-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 8 |
| Unpacked size | 181 KB |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| Author | shino |
| Maintainers | hoangsnow9x |
| Keywords | shino, shino-cli, express, framework, sinatra, web, rest, restful, router, app, api, es2015, es6, node es6, socket, socket.io, websocket |

## Links

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

## Dependencies (8)

- [ejs](https://npm.io/package/ejs.md) ^2.5.9
- [path](https://npm.io/package/path.md) ^0.12.7
- [chalk](https://npm.io/package/chalk.md) ^2.4.1
- [mkdirp](https://npm.io/package/mkdirp.md) ^0.5.1
- [fs-extra](https://npm.io/package/fs-extra.md) ^5.0.0
- [commander](https://npm.io/package/commander.md) ^2.15.1
- [minimatch](https://npm.io/package/minimatch.md) ^3.0.4
- [sorted-object](https://npm.io/package/sorted-object.md) ^2.0.1

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 0.0.7 (latest) — 2018-12-04
- 0.0.6 — 2018-11-18
- 0.0.5 — 2018-11-16
- 0.0.4 — 2018-11-16
- 0.0.3 — 2018-05-01
- 0.0.2 — 2018-04-30
- 0.0.1 — 2018-04-30

## README

[![Express Logo](https://i.cloudup.com/zfY6lL7eFa-3000x3000.png)](http://expressjs.com/)

[Shino'](https://www.npmjs.com/package/express) application generator. The application is built on an  [[express-generator](https://www.npmjs.com/package/express-generator)] platform.

[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[![Linux Build][travis-image]][travis-url]
[![Windows Build][appveyor-image]][appveyor-url]

## Installation

```sh
$ npm install -g shino
```

## Quick Start

The quickest way to get started with express is to utilize the executable `shino` to generate an application as shown below:

Create the app:

```bash
$ shino --view=hbs myapp && cd myapp
or  shino myapp
```

Install dependencies:

```bash
$ npm install
```

Start your  app at `http://localhost:1993/`:

```bash
$ npm start
```

Generate model or controller
```bash
$ shino generate model User 

or 

$ shino g model user 
$ shino g controller user 
```

## Socket io
Build real-time application with socketio
View example code in App/controllers/HomeController.js
[Document]: https://socket.io/docs/server-api/

## Command Line Options

This generator can also be further configured with the following command line flags.

        --version        output the version number
    -e, --ejs            add ejs engine support
        --pug            add pug engine support
        --hbs            add handlebars engine support
    -H, --hogan          add hogan.js engine support
    -v, --view <engine>  add view <engine> support (dust|ejs|hbs|hjs|jade|pug|twig|vash) (defaults to jade)
        --no-view        use static html instead of view engine
    -c, --css <engine>   add stylesheet <engine> support (less|stylus|compass|sass) (defaults to plain css)
        --git            add .gitignore
    -f, --force          force on non-empty directory
    -h, --help           output usage information

## License

[MIT](LICENSE)

[npm-image]: https://img.shields.io/npm/v/express-generator.svg
[npm-url]: https://npmjs.org/package/express-generator
[travis-image]: https://img.shields.io/travis/expressjs/generator/master.svg?label=linux
[travis-url]: https://travis-ci.org/expressjs/generator
[appveyor-image]: https://img.shields.io/appveyor/ci/dougwilson/generator/master.svg?label=windows
[appveyor-url]: https://ci.appveyor.com/project/dougwilson/generator
[downloads-image]: https://img.shields.io/npm/dm/express-generator.svg
[downloads-url]: https://npmjs.org/package/express-generator

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