kmyw / redux-crud-example

Basic crud react-redux-featherjs app for managing contacts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

REDUX CRUD EXAMPLE

This a basic crud react-redux-featherjs application for managing contacts. It currently uses MongoDB for the database and FeathersJS for the REST API server.

https://www.sitepoint.com/crud-app-react-redux-feathersjs/

How to install

git clone git@github.com:brandiqa/redux-crud-example.git
cd react-contact-manager

# Install frontend dependencies
npm install

# Install backend dependencies
cd backend
npm install

How to run

Ensure you have mongodb installed in your system and that it is running

Start the backend server

Start the backend server first:

cd react-contact-manager/backend
npm start

This will run the backend server at localhost:3030. If all is working well, you should be able to access the url http://localhost:3030/contacts from your Browser or Postman

Start the client

Open a separate terminal to start the client:

cd react-contact-manager
npm start

Your default web browser will be launched automatically with the url http://localhost:3000

License

The MIT License (MIT)

Copyright (c) 2017 SitePoint

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Basic crud react-redux-featherjs app for managing contacts

License:MIT License


Languages

Language:JavaScript 63.1%Language:HTML 36.8%Language:CSS 0.1%