Git Product home page Git Product logo

basic_crud's Introduction

Steps to start project

  • how would you start project : npm init -y
  • what packages needs to be installed - express , nodemon (dev), jest (dev), supertest(dev)
  • Create server and test folders
  • add server/app.js and modify packagejson "main" key
  • Modify start and test script
  • Run npm start, npm test
  • create folders : routes, controllers, utils, test, data in server
  • create test files in test folder

server/app.js

  • import express
  • listen on port 3000
  • ensure server starts without any error

server/ routes/post_routes.js

  • contains post routes code and export the router to app.js

server/ controller/post_controller.js

  • contains post controller code must be exported to be invoked in routes file

server/ util/utilities.js

  • contains helper functions must be exported and invoked by both controller and test units

server/data/blog_posts.json and server/data/blog_posts.test.json

  • contains a file which holds actual and test data for the CRUD action ( This will be replaced by Mongo in future)

test

  • contains test scripts to test the functionalities

github action: CI CD

Order:

app.js Build router. : Get all Posts, getPostByID. : GET /posts , /posts/:id Utilities Test utilities Controller Test from postman

Route : POST Add post: utility Test Controller

Route : Delete Delete post : utility Test Controller

Update Route: PUT UpdatePost : utility Test script update Controller test via postman

basic_crud's People

Contributors

drumovski avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.