GithubHelp home page GithubHelp logo

apidemo's Introduction

API Service Demo

TL;DR

A simple illustration of a nodejs (via typescript) API service. Spec below.

Build and Run

npm install
npm install -g gulp
gulp compile
node build/server.js
gulp jasmine
node build/cli.js

Spec

Step 1 - Build a system to parse and sort a set of records

Create a command line app that takes as input a file with a set of records in one of three formats described below, and outputs (to the screen) the set of records sorted in one of three ways.

  • Input

A record consists of the following 5 fields: last name, first name, gender, date of birth and favorite color. The input is 3 files, each containing records stored in a different format. You may generate these files yourself, and you can make certain assumptions if it makes solving your problem easier.

The pipe-delimited file lists each record as follows:  LastName | FirstName | Gender | FavoriteColor | DateOfBirth

The comma-delimited file looks like this:  LastName, FirstName, Gender, FavoriteColor, DateOfBirth

The space-delimited file looks like this:  LastName FirstName Gender FavoriteColor DateOfBirth

You may assume that the delimiters (commas, pipes and spaces) do not appear anywhere in the data values themselves. Write a program in a language of your choice to read in records from these files and combine them into a single set of records.

  • Output

Create and display 3 different views of the data you read in:

- Output 1 – sorted by gender (females before males) then by last name ascending.

- Output 2 – sorted by birth date, ascending.

- Output 3 – sorted by last name, descending.

Display dates in the format M/D/YYYY.

Step 2 - Build a REST API to access your system

Tests for this section are required as well. Within the same code base, build a standalone REST API with the following endpoints:

  • POST /records - Post a single data line in any of the 3 formats supported by your existing code
  • GET /records/gender - returns records sorted by gender
  • GET /records/birthdate - returns records sorted by birthdate
  • GET /records/name - returns records sorted by name

It's your choice how you render the output from these endpoints as long as it well structured data. These endpoints should return JSON. To keep it simple, don't worry about using a persistent datastore.

apidemo's People

Contributors

frickjack avatar

Watchers

 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.