DADI API is built on Node.JS and MongoDB. It is a high performance RESTful API layer designed in support of API-first development and the principle of COPE.
You can consider it as the data layer within a platform (including the data model). It is designed to be plugged into a templating layer (such as DADI Web), a mobile application or to be used with any other data consumer.
Calls to a DADI API can contain your business/domain logic (the part of a platform that encodes the real-world business rules that determine how data is created, displayed, stored and changed). It has full support for searching, filtering, limiting, sorting, offsetting, input validation and data aggregation (through support for MongoDB's aggregation pipeline).
It has built-in support for oAuth2, includes full collection-level ACL, can connect to multiple databases out of the box, provides native document versioning at collection level, supports static endpoints, includes automatic indexing, has a caching layer and can be run in a clustered configuration.
DADI API provides a starting point that's further advanced than a framework. It allows you to get a complete data layer up and running in minutes.
It is part of DADI, a suite of components covering the full development stack, built for performance and scale.
The quickest way to get started with API is to use DADI CLI. See Creating an API for full installation details.
API starts with some sensible defaults, so it's not necessary to understand all the configuration options available when first running the application.
Configuration is handled using JSON files specific to the application environment. For example in the production environment a file named config.production.json
will be used. Configuration files must be placed in a config
folder in your application root, for example config/config.production.json
. The default start up environment is development
, using the configuration file at config/config.development.json
.
The bare minimum required for running the API is a server
block. With only a server
block, default values are used for all other properties.
Sample configuration
{
"server": {
"host": "127.0.0.1",
"port": 3000
}
}
API can be started from the command line simply by issuing the following command:
$ npm start
With the default configuration, our API server is available at http://localhost:3000. If you've modified the configuration file's server
block, your API will be available at the address and port you've chosen. Use cURL to check the server is running, if the connection can be made you will receive the following "Unauthorised" message.
$ curl http://localhost:3000
{ "statusCode": 401 }
$ curl -I http://localhost:3000
HTTP/1.1 401 Unauthorized
content-type: application/json
content-length: 18
Date: Thu, 20 Apr 2017 23:42:25 GMT
Connection: keep-alive
The HTTP 401 response received in the previous step shows that the server is running. To start using the REST endpoints you'll need a user account so you can obtain access tokens for interacting with the API.
User accounts provide an authentication layer for API. Each user account has a clientId and a secret. These are used to obtain access tokens for interacting with the API. See the Authentication section of the API documentation for full details.
CLI contains an interactive "Client Record Generator" to help you create user accounts. Run the following command in the directory where you installed API:
cd my-new-api
dadi api clients:add
If you need to create user accounts in other environments (for example following a deployment to a live server), add the environment to the following command:
$ NODE_ENV=production npm explore @dadi/api -- npm run create-client
To run your API application in the background as a service, install Forever and Forever Service:
$ npm install forever forever-service -g
$ sudo forever-service install -s index.js -e "NODE_ENV=production" api --start
You can now interact with the api
service using the following commands:
$ [sudo] service api start
$ [sudo] service api stop
$ [sudo] service api status
$ [sudo] service api restart
Note: the environment variable
NODE_ENV=production
must be set to the required configuration version matching the configuration files available in theconfig
directory.
DADI API is based on an original idea by Joseph Denne. It is developed and maintained by the engineering team at DADI (https://dadi.tech)
- Adam K Dean akd@dadi.co
- Arthur Mingard am@dadi.co
- David Longworth dl@dadi.co
- Eduardo Bouças eb@dadi.co
- Francesco Iannuzzelli fi@dadi.co
- James Lambie jl@dadi.co
- Joe Wagner
- Joseph Denne jd@dadi.co
- Kevin Sowers kevin.sowers223@gmail.com
- Robert Stanford rs@dadi.co
- Viktor Fero vf@dadi.co
DADI is a data centric development and delivery stack, built specifically in support of the principles of API first and COPE.
Copyright notice
(C) 2017 DADI+ Limited support@dadi.tech
All rights reserved
This product is part of DADI.
DADI is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version ("the GPL").
If you wish to use DADI outside the scope of the GPL, please contact us at info@dadi.co for details of alternative licence arrangements.
This product may be distributed alongside other components available under different licences (which may not be GPL). See those components themselves, or the documentation accompanying them, to determine what licences are applicable.
DADI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
The GNU General Public License (GPL) is available at
http://www.gnu.org/licenses/gpl-3.0.en.html.
A copy can be found in the file GPL.md distributed with
these files.
This copyright notice MUST APPEAR in all copies of the product!