https://github.com/kdthanvi/learn_node
nodejs learning small codes from tutorials, etc.
https://github.com/kdthanvi/learn_node
express nodejs yargs
Last synced: 3 months ago
JSON representation
nodejs learning small codes from tutorials, etc.
- Host: GitHub
- URL: https://github.com/kdthanvi/learn_node
- Owner: kdthanvi
- License: mit
- Created: 2018-08-08T16:12:36.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-11T11:31:57.000Z (over 7 years ago)
- Last Synced: 2025-08-07T20:40:46.826Z (11 months ago)
- Topics: express, nodejs, yargs
- Language: JavaScript
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# learn_node
### Reference/Credits
#### test-00
* https://medium.freecodecamp.org/building-a-simple-node-js-api-in-under-30-minutes-a07ea9e390d2
* Note : Unlike the tutorial, in my implementation I have used mongoBD running locally!
#### api-00
* slack invitation api.
* To run : `node app.js`
* To access : `localhost:3000/invite` (HTTP POST, requires {email : email_id})
#### yargs-00
* Command line tool with yargs (http://yargs.js.org/)
* Install : `npm install yargs`
* To Run
```
node notes.js add --title="mytitle" --body="mybody"
node notes.js remove --title="mytitle"
node notes.js read --title="mytitle"
node notes.js list
```