Skip to content

redbonzai/starwars-node-ts-api

Repository files navigation

TYPESCRIPT STAR WARS API IMPLEMENTATION

INSTALLATION:

   npm install

CREATE ENV FILE:

    cp .env.example .env

CREATE THE FOLLOWING DIRECTORIES:

    mkdir unitTestReports
    mkdir .nyc_output

create the following empty file inside the unitTestReports directory:

    touch unitTestReports/junitresults.xml

START THE API:

   npm start

POSTMAN COLLECTION:

the link is here: star wars implementation Postman Collection

NOTES:

I fulfilled the obligation of the test. However, there are some things that I would have loved to do if time were more plentiful.

If I would have had more time I would have implemented a database to store the data when it is queried so as to build my own PostgreSQL Star Wars API, and add to it. I didn't do that, but I created the following to show the intent:

Created a database implementation on the api

The database connection is intended to be used with a ETL process that is not yet built. Also, there is an ORM ( TypeOrm ) that will be part of this process. The intention here: ONce the data model is built, then as an automated ETL process, check that a row doesn't exist, and persist.

    import { Pool } from 'pg';

    const pool = new Pool({
        user: process.env.DB_USER,
        host: process.env.DB_HOST,
        database: process.env.DB_DATABASE,
        password: process.env.DB_PASSWORD,
        port: parseInt(process.env.DB_PORT),
    });

    export default pool;

There is a docker-compose.yml configuration for a postgreSQL database.

There is also A Dockerfile.

Both of these work, but they are not fully implemented due to time. .

Created an sql.init file that is being run if docker is spooled up.

docker compose up -d

Currently, one can either run the application on the api container, or can run it locally with npm start. The process is virtually the same. In either case NPM START is executed, either on the local command line, or in a docker container.

Thus, if I would have had more time, this would have been a dynamic data-driven api.

I created some middleware files that handle the following scenarios:

  • CORS
  • Error Handling
  • Logging
  • apiValidation
  • Request Validation All of these work, but not all of them are implemented.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published