https://github.com/viniceosm/vexpress
Criar um app inicial com express e alguns outros pacotes
https://github.com/viniceosm/vexpress
body-parser bootstrap cli cookie-parser express express-myconnection express-session jade mongoose multiparty pug quick-start socketio terminal
Last synced: 3 months ago
JSON representation
Criar um app inicial com express e alguns outros pacotes
- Host: GitHub
- URL: https://github.com/viniceosm/vexpress
- Owner: viniceosm
- Created: 2018-01-03T20:45:49.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-08T12:29:12.000Z (over 7 years ago)
- Last Synced: 2025-09-04T12:59:10.410Z (4 months ago)
- Topics: body-parser, bootstrap, cli, cookie-parser, express, express-myconnection, express-session, jade, mongoose, multiparty, pug, quick-start, socketio, terminal
- Language: CSS
- Homepage: https://viniceosm.github.io/vexpress/
- Size: 193 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README-BR.md
Awesome Lists containing this project
README
# vexpress
Criar um app inicial com [express](http://expressjs.com/pt-br/) e alguns outros pacotes ([body-parser](https://github.com/expressjs/body-parser), [bootstrap](https://getbootstrap.com/docs/3.3/), [cookie-parser](https://github.com/expressjs/cookie-parser), [express-myconnection](https://github.com/pwalczyszyn/express-myconnection), [express-session](https://github.com/expressjs/session), [jade/pug](https://github.com/pugjs/pug), [mongoose](http://mongoosejs.com/), [multiparty](https://github.com/pillarjs/multiparty) e [socket.io](https://socket.io/))
## Instalação
```
npm install -g vexpress
```
## Como usar
```
vexpress [seu app node]
```
## Estrutura
```
libs
└── connect-db.js
└── varGlobal.js
mongo
└── controller
└── usuarios.js
└── models
└── usuarios.js
public
└── css
└── bootstrap.min.css
└── demo.css
└── master.css
└── material-kit.css
└── material-kit.css.map
└── img
└── js
└── bootstrap-min.js
└── jquery.min.js
└── master.js
└── material-kit.js
└── material-min.js
routes
└── index.js
util
└── util.js
views
└── head.jade
└── home.jade
└── index.jade
└── navbar.jade
└── notFound.jade
└── testLogado.jade
app.js
package-lock.json
package.json
README.md
```