api.js is a REST helper library for javascript. The purpose is to provide methods that are commonly used when dealing with REST request to and from a server.
With bower
bower install --save-dev apidotjs
With npm
npm install --save-dev apidotjs
With yarn
yarn add apidotjs --dev
To run functional tests you need to keep the test server running while executing tests. Run
npm start
To start the test server
A Dockerfile is included at the root of the project. To start the test server with docker simply run
docker build -t api .
docker run --name api -p 8000:8000 -d api npm start
This command will run unit/functional tests
gulp test
Gitbook - api.js
Issue tracker: https://github.com/K0TT/api.js/issues
Contact: doddi@kott.is