Git Product home page Git Product logo

api-rest-nodejs's Introduction

๐Ÿ“Š About

Project developed in the Node.js specialization bootcamp at Rocketseat, where the objective was to create a financial transactions application

๐Ÿ“š Technologies e libs

POST /transactions

Run in Hoppscotch

Create a new transaction.

Request body

{
  "title": "Freelancer",
  "amount": 9000,
  "type": "credit"
}

GET /transactions

Run in Hoppscotch

Return an array of transactions.

Response body

{
  "transactions": [
    {
      "id": "4e563c29-6b32-444f-95a8-82e546ad6b66",
      "title": "Freelancer",
      "amount": 9000,
      "created_at": "2024-04-27 20:51:57",
      "session_id": "7df05094-755f-48d2-86c0-46169d511a5b"
    }
  ]
}

GET /transactions/:transactionId

Run in Hoppscotch

Return data from a single transaction.

Response body

{
  "transaction": {
    "id": "4e563c29-6b32-444f-95a8-82e546ad6b66",
    "title": "Freelancer",
    "amount": 9000,
    "created_at": "2024-04-27 20:51:57",
    "session_id": "7df05094-755f-48d2-86c0-46169d511a5b"
  }
}
}

GET transactions/summary

Run in Hoppscotch

Return sumary from transaction.

Response body

{
  "summary": {
    "amount": 9000
  }
}

๐Ÿ“ How to run the project

#  Clone this repository.
$ git clone https://github.com/KRochaS/api-rest-nodejs.git

# Navigate to the project folder in the terminal/cmd.
$ cd api-rest-nodejs/

# Install the dependencies.
$ npm i ou yarn install

# Copy .env.example to .env file

# run the project
$ npm run dev

# HTTP server running on http://localhost:3333

api-rest-nodejs's People

Contributors

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