https://github.com/yashladha/notaek
Note taking app - learning express
https://github.com/yashladha/notaek
Last synced: 3 months ago
JSON representation
Note taking app - learning express
- Host: GitHub
- URL: https://github.com/yashladha/notaek
- Owner: yashLadha
- License: mit
- Created: 2017-06-30T18:01:04.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-05T19:55:26.000Z (almost 8 years ago)
- Last Synced: 2025-01-28T15:16:01.342Z (5 months ago)
- Language: JavaScript
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# express-app-note
Note taking app - learning express
This is a mini project to learn the concepts of express and get some familiarity __MONGO__ and elasticsearch.# Requirements
This program requires mongo-db to be preinstalled and running as a background service.
Also Install the elastic search also for querying purpose and it should be also running
in background as mongoosastic use it for querying operation purposes.If you haven't them try to install it from official documemntation, it will really help.
```sh
sudo service mongod start
```This will start mongo as a background service.
Them create a database for the app (in mongo shell) :
```sh
mongo
use note_app
```Now your database is up and ready to fire.
Install the node and its dependencies, from command
```sh
npm install
```This will install all the necessary dependencies in the package.json file and store them in
the node_modules in your directory.
For kickstarting the code, execute the following command
```sh
npm start
```This will run the server locally on port [3000](http://localhost:3000/).
Now create a user from signup method and voila use the app.## Contributors
+ yashLadha