https://github.com/mikeludemann/nodejs_express_jade-pug
Website with Node.js and Express and Jade/Pug - Tutorial and more
https://github.com/mikeludemann/nodejs_express_jade-pug
babel certificates config css3 env express html5 jade javascript jquery nodejs pug react server template transpiler tutorial webpack
Last synced: 2 months ago
JSON representation
Website with Node.js and Express and Jade/Pug - Tutorial and more
- Host: GitHub
- URL: https://github.com/mikeludemann/nodejs_express_jade-pug
- Owner: mikeludemann
- License: mit
- Created: 2018-05-29T16:33:47.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-27T22:56:27.000Z (almost 8 years ago)
- Last Synced: 2025-06-17T06:03:32.827Z (about 1 year ago)
- Topics: babel, certificates, config, css3, env, express, html5, jade, javascript, jquery, nodejs, pug, react, server, template, transpiler, tutorial, webpack
- Language: JavaScript
- Homepage:
- Size: 90.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Node.js and Express and Jade/Pug
## Tutorial and more
Website with Node.js and Express and Jade/Pug
Optional - Module: "spdy" / "websocket" / "koa" / "passport"
## Prerequisite
Installing modules
- (sudo) npm install -g
* Node.js (Version 10.0 or higher)
* npm (Version 5.6.0 or higher)
* nodemon
* Webpack
* Browserify
* babel-cli
* JSX
* React
* Preact
### Installation all packages (node_modules)
```code
npm install
```
### Commands with npm (package.json)
Starting app
```code
npm run start
```
Starting app & Watching / reload app automatic
- nodemon.json (Config)
```code
npm run watch
```
Testing
```code
npm run test
```
Cleaning cache
```code
npm run cache
```
Reload app with node
```code
npm run reload
```
Bundler for all specific files
```code
npm run bundler
```