Skip to main content

Posts

Showing posts with the label CD

Up and running Node.js

         What we are gonna do? We will be creating a web app. A user can find gifs based on the word. To implement this we will be creating a backend service using Node.js, Express, and frontend using React. We will use Github for Source Code Management and finally we will deploy our project to AWS. We will also set up a pipeline for CI/CD (Continuous Integration and Continous Deployment). Setup the development environment This part you have to do on your own. Install node and npm Install your favorite IDE (atom is good enough) Install git Fun part. Start coding. Fire up the terminal if using ubuntu hit  alt+ctrl+t. Create a new directory for the project. mkdir giffer  <or some other cool name> cd giffer run npm init Give the required information Voila, n p m will create a new package.json file. Now let’s start writing code. We will use express for creating the backend server. Discussion about express is out of the scope for this post. Let’s pul...