Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/trngtam10d/basic-nodejs

Platform to learn nodejs
https://github.com/trngtam10d/basic-nodejs

express handlebars mongodb mongoose mongoose-plugin nodejs nodemon

Last synced: 3 days ago
JSON representation

Platform to learn nodejs

Awesome Lists containing this project

README

        

# Express

$ mkdir myapp

$ cd myapp

$ npm init


# Nodemon
nodemon is a tool that helps develop node.js based applications by automatically restarting the node application when file changes in the directory are detected.
Either through cloning with git or by using npm (the recommended way):
npm install -g nodemon # or using yarn: yarn global add nodemon

You can also install nodemon as a development dependency:
npm install --save-dev nodemon # or using yarn: yarn add nodemon -D

# SASS
To download and execute you use the following 2 commands:
$ npm install node-sass


and
$ npm run watch


# Mongoose detele: Soft delete
https://www.npmjs.com/package/mongoose-delete#who-has-deleted-the-data
$ npm i mongoose-delete