Giter Club home page Giter Club logo

arnold's Introduction

Arnold

TECNOLOGIAS

*Las tecnoligas usadas son Node Js., Express, Router.
*Me base en la estructuracion de un framework MVC.
*Hay un archivo .json que guarda los productos y otro los carritos.

ENDPOINTS

PRODUCTOS

**GET**
(Trae todos los productos)
http://localhost:8080/api/productos/

**GET**
(Trae un producto especifico por id)
http://localhost:8080/api/productos/:idProducto
http://localhost:8080/api/productos/3

**PUT**
(Necesita ser ADMIN)
Headers:
    Key: admin
    Value: 1
(Actualiza un producto por id)
http://localhost:8080/api/productos/:idProducto
http://localhost:8080/api/productos/1

body: {
        "id": 3,
        "name": "Camisas",
        "price": 320000,
        "description": "Camisa formal con 7 botones",
        "sku": "CA-1212   ",
        "stock": 10,
        "image":"camisa.png"
    } 

**POST**
(Necesita ser ADMIN)
Headers:
    Key: admin
    Value: 1
(Inserta un Nuvo producto)
http://localhost:8080/api/productos/

body: {
        "name": "PEREz",
        "price": 320000,
        "description": "Camisa formal con 8 botones",
        "sku": "CA-1212   ",
        "stock": 10,
        "image":"camisa.png",
        "domicilio": "marta"
    } 

**DELETE**
(Necesita ser ADMIN)
Headers:
    Key: admin
    Value: 1
(Elimina un producto especifico por idProducto)
http://localhost:8080/api/productos/:idProducto
http://localhost:8080/api/productos/7

CARRITO

**GET**
(Necesita ser ADMIN)
Headers:
    Key: admin
    Value: 1
(Trae todos los carritos si sos admin)
http://localhost:8080/api/carrito

**GET**
(Trae un carrito especifico por id)
http://localhost:8080/api/carrito/:idCarrito

**PUT**
(Agrega el producto con el id del body en el carrito)
http://localhost:8080/api/carrito/:idCarrito/productos
http://localhost:8080/api/carrito/1/productos

body: {
        "id": 1
    }   

**PUT**
(Elimina el producto del carrito con sus ids)
http://localhost:8080/api/carrito/:idCarrito/productos/:idProducto
http://localhost:8080/api/carrito/1/productos/1

**POST**
(Crea un carrito nuevo vacio y devuelve el id del carrito creado)
http://localhost:8080/api/carrito

**DELETE**
(Elimina un carrito por id)
http://localhost:8080/api/carrito/:idCarrito
http://localhost:8080/api/carrito

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.