Skip to content

JordanHood/UserApi

Repository files navigation

Coverage Status CircleCI

Deploy

Node.js User API

An API to manage a user persistence layer

Implementation

  • The API exposes a user model with the following properties: id, email, forename, surname, date created
  • The following endpoints are exposed: create, read, update, delete
  • Can be consumed using Google Chrome's Postman. See repo for User_API.postman_collection file, which can be imported by Postman
  • Input is validated and sanitised with sequalize's build in validation

Installation

  1. Install node version v6.9.4
  2. App dependencies - npm install
  3. Install PostGres - to allow user data to be persisted the app requires a connection to an instance of PostGres SQL. The local connection string is specified in the config.js file.
  4. ensure that postgres is running brew services start postgresql if on mac os
  5. run createuser -P user_name replacing user_name with your current user name
  6. run createdb db_name replacing db_name with your current user name

Usage

  1. To start the Node.js server run npm start On startup the app will create a users table and insert some users read from scripts/baseData.json to use for storing, reading, writing, and deleting 'user' information

Tests

  • Unit tests are run with Mocha which can run with npm run test:coverage.
  • Linting is run using StandardJs which can be run with npm run lint.

Documentation

Once the server is running, the api is documented using swagger, which can be accessed by going to http://localhost:3500/

About

An API to manage a user persistence layer

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published