About

NOTE:

DELETE ** react-crud-app ** folder before following the instructions below!!!!! Otherwise your project may not run at all!


Project: "Contacts Manager || React + FeatherJS" This project uses Feathers. An open source web framework for building modern real-time applications. The code allows you to add new contacts to your Contact Manager.

==========================================================================================

Project Image Demo:

Image 1) Add Contact Modal

Add-Contact-Modal

Image 2) Contacts List Modal

Contacts-List

Image 3) New User Flow

New-User-Flow

Image 4) New Added to Contacts Cards

New-User-Added-Contacts-Cards-List

---------------------=====================================---------------------------------======================================-----------------------------

Getting Started

Getting up and running is as easy as 1, 2, 3, 4.

  1. Make sure you have NodeJS and npm installed. Verify NodeJS Installation: node --version

  2. Install your dependencies

    From root of project (/react-crud-contacts-manager-featherjs)

    npm install or yarn install 
    
    

    ^ This will insall all required technologies for the Frontend in a new node_modules folder.

    cd path/to/backend
    npm install
    
  3. Start your MongoDB connection

    • Open a new terminal / cmd prompt & type:
    mongod
    
  4. Start your app

    npm start (or yarn start)
    

Testing

Simply run npm test and all your tests in the test/ directory will be run.

Scaffolding

Feathers has a powerful command line interface. Here are a few things it can do:

$ npm install -g @feathersjs/cli          # Install Feathers CLI

$ feathers generate service               # Generate a new Service
$ feathers generate hook                  # Generate a new Hook
$ feathers help                           # Show all commands

Help

For more information on all the things you can do with Feathers visit docs.feathersjs.com.