Giter VIP home page Giter VIP logo

homework's Introduction

Home work mock server

This mock server is built by json-server. All the mocked data are put in file db.json.

Please use this mock server as the back end server of your homework. You can use this project as mock server directly, or you can integrate this mock server into your own project.

Of course, if you think anything in this mock server is not OK for you, you can absolutely change this server to help you finish your homework.

Start mock server

Please clone or download this project to your local, and use npm or yarn to install the dependences and start server:

npm install
npm start

Or

yarn install
yarn start

Then you can access http://localhost:3001/agents/ to see if the server is started correctly.

APIs

You can refer the document of json-server to see the full APIs.

Also here are some APIs you might want to use:

Get agents list

GET http://localhost:3001/agents

The response of this request would be the json of all agents list.

Get one agent

GET http://localhost:3001/agents/{id}

The response of this request would be the json of the agent which match the id.

Change one agent

PUT http://localhost:3001/agents/{id}
{
    "headers": {
        "Content-Type": "application/json"
    },
    "body": {MODIFIED AGENT}
}

The body parameter is a json of the modified agent, here is an example:

"body": {
      "name": "bjstdmngbdr10.thoughtworks.com",
      "os": "ubuntu",
      "status": "building",
      "type": "physical",
      "ip": "192.168.1.117",
      "location": "/var/lib/cruise-agent",
      "resources": [
        "Firefox",
        "Safari"
      ],
      "id": 3
    }

Then the agent which match which the id will be updated and be replaced with the modified agent.

The response of this request would be the json of the modified agent.

homework's People

Watchers

James Cloos avatar  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.