Giter Club home page Giter Club logo

pp-test's Introduction

Address book Build Status

Address book application. Express server and client using react & rxjs. Babel to transpile ES2015 to ES5 and tooling supported by webpack.

Usage

git clone https://github.com/samarpanda/pp-test.git

# install dependencies
npm install

# create distribution directory ui public folder
npm run deploy

# Start mongo db locally with directory path
mongod --dbpath $DIR_PATH

# Start server
npm start

Browser open url http://localhost:3000

Host html in github.io

Pushing dist directory to github.io

git subtree push --prefix dist origin gh-pages

Client

  1. Shows contact list
  2. Responsive demo: shows the detail block towards the right for all resolution other than mobile. For mobile it shows at the top.
  3. Search by contact name at the bottom. Implementation uses Observable concepts.

Server

Implemented CRUD using express & MongoDB. REST API up & running on heroku.

  1. Create contact
request
url  => 'https://heroku-pp-test.herokuapp.com/contacts'
type => 'POST'
{
  name: 'String',
  phone: 'String'
}

status => 200
response
{
  name: 'String',
  phone: 'String'
}
  1. Get all contacts
request
url  => 'https://heroku-pp-test.herokuapp.com/contacts'
type => 'GET'

status => 200
response
[{
  name: 'String',
  phone: 'String'
},
{
  name: 'String',
  phone: 'String'
},...]
  1. Update contact
request
url  => 'https://heroku-pp-test.herokuapp.com/contacts/:id'
type => 'PUT'
{
  name: 'String',
  phone: 'String'
}

status => 200
response
{
  name: 'String',
  phone: 'String',
  _id: 'String'
}
  1. Delete contact
request
url  => 'https://heroku-pp-test.herokuapp.com/contacts/:id'
type => 'DELETE'

response
{
	name: 'String',
	phone: 'String'
}
  1. Filter by name
request
url  => 'https://heroku-pp-test.herokuapp.com/contacts/filter/:name'
type => 'get'
{
	name: 'String'
}

response
[{
  name: 'String',
  phone: 'String'
},
{
  name: 'String',
  phone: 'String'
},...]

Demo

Don't miss to check out the demo at http://samarpanda.github.io/pp-test/

List of todos

  1. Update from UI
  2. Combining search result & list view
  3. Test suite using ava
  4. Multiple browser testing using karma and saucelabs
  5. Refactor the repetative codes

pp-test's People

Contributors

samarpanda avatar

Stargazers

Manohar Negi avatar

Watchers

 avatar James Cloos 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.