An open API service indexing awesome lists of open source software.

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

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
```