Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/trngtam10d/basic-nodejs
- Owner: trngtam10d
- License: apache-2.0
- Created: 2022-04-16T09:06:10.000Z (over 2 years ago)
- Default Branch: learn
- Last Pushed: 2022-07-18T02:30:17.000Z (over 2 years ago)
- Last Synced: 2024-10-18T14:53:20.518Z (28 days ago)
- Topics: express, handlebars, mongodb, mongoose, mongoose-plugin, nodejs, nodemon
- Language: Handlebars
- Homepage:
- Size: 437 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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