Giter Site home page Giter Site logo

mern-trello-api's Introduction

Node.js + Expressjs + mongoDB - Building an API like Trello form scratch

Requirements

  • nodejs >= v14.7.0
  • npm >= v6.14.7
  • yarn >= v1.19.1
clone project and run test
$ git clone https://git_url_clone <project_dir>
$ cd <project_dir>
$ yarn install
$ yarn start
errors encountered and how to fix them

file: pakage.json

scripts:{
    "clean": "rd -rf build && mkdir build",
    }
  • In Windows you should use
  • rd /s /q dist
  • rm is available in Linux and Mac.

So, How to run rm command on windows 10?

OR

scripts:{
    "remove-build": "rmdir /s /q build",
    "create-build": "mkdir build",
    "clean": "npm run remove-build && npm run create-build",
    }

file: .env

  • doesn't work with .env files

  • Create a .env file :

    // code environment variables here
    //examples
    PORT=3000

Solution

Note

  • Cloning out 1 array or 1 object is good but can't create a deep copy of the value i.e. it recursively clones the value

  • Example:

    const cloneCard = [...card];
  • Solution: using Lodash

  • cloneDeep

  • import {cloneDeep} from 'lodash'

  • Object inheritance is preserved.

Bug

My website Blog

** Coming soon !! **

Thanks for watching!

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.