Featured
-
List of Top 10 Node.js Frameworks for Beginner Web Developers
JavaScript is one of the most popular language for
by nishant.mishra
Tags
How to Create RESTful API using NodeJS & MongoDB
So the first question will come in your mind is, What is REST?
Well, REST is an abbreviation for “representational state transfer”. It is an architectural style and also can be defined as an approach to communication...
NodeJS and MongoDB
Node.js which make use of chrome v8 engine can be used for building fast, scalable network applications. It is based on event-driven and non-blocking I/O model thus making it lightweight and efficient and most suitable for real time application.
...
Discussion on MongoDB with Nodejs
Welcome to FindNerd. Today we are going to discuss mongoDB with nodejs. We use mongoDB with nodejs. MongoDB is nosql database. It is open source as well as cross-platform and well documented database. MongoDB uses collection which is set of mongo...
CRUD OPERATIONS IN MONGO DB
Below is the list of basic MONGO DB commands which a user can start with :
1) To list all the databases
show dbs
Example:
> show dbs
admin (empty)
lo...