Posts for Node

Node.js is an open-source, cross-platform, JavaScript run-time environment that executes JavaScript code outside of a browser.
Deven
Deven wrote

Build a RESTful CRUD API Using Node, Express, and MongoDB

In this article, we’ll discuss how to create Restful CRUD API with Node.js, Express, and Mongoose to interact with a MongoDB instance to give your web app superpowers. Our API will include the following features: Handle CRUD operations Have an API URL (http://localhost:3000/tasks  User can update, edit, delete and add tasks directly in the database […]

December 13, 2019 in Node & Tutorials

How to build a Twitter bot with NodeJs

Building a Twitter bot using their API is one of the fundamental applications of the Twitter API. To build a Twitter bot with Nodejs, you’ll need to take these steps below before proceeding: Create a new account for the bot. Apply for API access at developer.twitter.com Ensure you have NodeJS and NPM installed on your […]

December 2, 2019 in Javascript & Node & Tutorials

How to consume RESTful APIs with axios

Knowing how to consume data from an API is very important as a front-end developer. In this article, we’ll discuss what an API is and how to consume data from it via http to give your web app superpowers. It is assumed that you have adequate knowledge of JavaScript and how NodeJs works. What is […]

November 18, 2019 in Javascript & Node & Tutorials