Coder Social home page Coder Social logo

challimproveinnjs's Introduction

Welcome to the Node.js Chall.

Basic Login API + Movies / Shows endpoints!

Install

npm install

Usage

You have to set up your own .env with these variables:
MONGODB=you_have_to_set_this
SECRETORKEY=you_have_to_set_this
MYHOST=localhost

then your can use:

npm start

Endpoints

The endpoints to solve the minimum required of the challange are:
/api/user/signup ---> Use an OBJ like this one:
{
	"firstName":"myFirstName",
	"lastName":"mySecondName",
	"password":"myPassword",
	"eMail":"[email protected]"
}
This will grant you 2 tokens, one access and one refresh.
/api/user/signin ---> Use an OBJ like this one:
{
  "eMail":"[email protected]"
	"password":"myPassword",
}
/api/user/refreshtoken  ---> Send Authorization Bearer refreshToken in headers , if all is good will receive new credentials.
/api/movies/ ---> To sort by duration and filter the movies that are higher in duration than 110 you can send this on body for example:
{
	"filterBy":{
		"duration":{"$gte":110}
	}
}
/api/directors ---> To add a new director you can send atleast firstName and lastName like this
{
	"firstName":"Sylvester",
	"lastName":"Stallone"
}

Technologies

Node.JS
MongoDB / Mongoose /Express
JWT

Author

๐Ÿ‘ค Federico Budtke

challimproveinnjs's People

Contributors

wernerbudtke 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.