Skip to content

Instantly share code, notes, and snippets.

View jugshaurya's full-sized avatar
🐢
Focusing, learning, enjoying & building web apps

Shaurya Singhal jugshaurya

🐢
Focusing, learning, enjoying & building web apps
View GitHub Profile
@jugshaurya
jugshaurya / gist_mh.txt
Last active April 29, 2020 06:09
Semver or modules-tried or to be tried
# Small Intro of Node:
Node - Runtime Enviornment for execting JS code, perfect choice for building RESTful API , for building I/O intensive Application
Node Apps are Single-threaded ,non-blocking or asynchronous in nature.
Node have 'global' in anologous to 'window' on browser and have things/internal modules to talk to OS, have filesystem to do read and write ops, and more.
Avoid:
For CPU-intensive apps because more they have to wait for a work to be done more time user have to wait to get related data.
NPM to download and install 3rd-party libraries from the npm registry
@jugshaurya
jugshaurya / gist:6bc375ec2bee76ccfa6fc2676f35cb67
Last active September 9, 2019 14:47
Things I have worked with or encounterd them or want to use them
## Database + their ORM/Driver + Software to use
1. Mongodb / Nedb /
monk
mongoose
robo3t - to see the records visually
MongoAtlas for mongodb hosted on internet
2. PostgressQL
knex