Giter Club home page Giter Club logo

sdw-3a-react-eval2's Introduction

sdw-3a-react-eval2

Consignes

1. Forker le projet

2. Créer votre pull request avec nom prénom

3. Cloner votre fork

4. Implémenter les fonctionnalités suivantes :

En partant de l'application react présente dans le dossier "client", vous devez implémenter un back-office permettant de :

  • lister les users

  • créer un user

  • modifier un user

  • supprimer un user

  • lister les projets

  • créer un projet en lien avec un user

  • modifier un projet

  • supprimer un projet

Le tout doit être connecté au backend servi en http://localhost:5000

5. Une fois le travail terminé, ajouter un commentaire "terminé" à votre pull-request


Aides & indices

API

get users : GET /api/users

create user : POST /api/user

  • Request body :
{
  'age': Number,
  'name': String,
  'type': String 
}

update user : PUT /api/user/:id

  • Request body :
{
  'age': Number,
  'name': String,
  'type': String 
}

delete user : DELETE /api/user/:id

get projects : GET /api/projects

create project : POST /api/project

  • Request body :
{
  'title': String,
  'description': String
  '_creator': String
}

update project : PUT /api/project/:id

  • Request body :
{
  'title': String,
  'description': String 
}

delete project : DELETE /api/project/:id

get user projects : GET /api/user/:id/projects

Références

sdw-3a-react-eval2's People

Contributors

davidostermann avatar kier4n 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.