Skip to content

sebasworkana/nodejs-challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

nodejs-challenge

  1. Create a DB using your preferred DBMS. Field “Id” should be auto-incremental, properties should be the same as on image. And you need to create a second table with the name “Fabrica” with “IdFab” as the primary key and foreign key of table products and the other field needs to be “descripcion” and need to be text typed having the name of the product.

  2. Create and endpoint in node.js to GET all products grouped by FabricID (“IdFab”)

  3. Create another endpoint, POST, to create a new product, it should insert a new product on the table “Productos” and “Fabrica”. The endpoint should validate each field and type, if creation is correct, you should send a “Status” field in response, with “true” Boolean value, and a “Payload” field with product information. If sent information is invalid related to types or missing fields, you should return a “400” error with a custom message saying “Missing information”.

  4. Create a new endpoint in typescript to DELETE a product by ID.

  5. All 3 endpoints should have their own controllers, and routes should be exported to the main server file.

  6. Create an authentication method using JWT to secure endpoint calls by using “Bearer” token to authenticate.

  7. Create a POSTMAN collection to make HTTP calls more simple.

  8. Create 3 Unit Test using the preferred Testing library to test 3 endpoints.

  9. Ideally create a “docker compose” file to create DB and run API easily.

  10. Create a fork from original repo https://github.com/sebasworkana/nodejs-challenge.git and in your personal repository (forked repository) Create a new branch from master with you name and last name, and send a PR to this repo (master branch).

  11. Finally give access to the repo to sebasworkana user in github.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published