neapi
v2.0.2
Published
Very simple JSON-based request-responce API
Downloads
1
Readme
NeAPI
Very simple JSON-based request-responce API. Useful in simple all-in-one web-applications with Node.js as a backend.
Server Usage
Server part of the NeAPI is a middleware for Express-like http-servers. For example we can use Polka server:
// server.js
const polka = require('polka');
const neapi = require('neapi/server');
const scheme = require('./api/scheme')
const neapi_middleware = neapi.getMiddleware({scheme});
polka()
.use('/api',neapi_middleware)
.listen(3000, err => {
if (err) throw err;
});
API Scheme
Then we should create scheme of the API methods. Methods are groups by namespaces.
// api/scheme.js
module.exports = {
// algebra - a namespace for group of methods
algebra: {
// a list of the methods
addition: (resp, err, params, context) => {
if(params.a > 100 ) return err('Too big param');
return resp( params.a + params.b )
},
subtraction: (resp, err, params, context) => {
...
}
},
auth: {
...
},
...
}
Methods
Method is a function that accepts 4 parameters:
resp(payload)
- a function, that sends any data (orpayload
) to the clienterr(error,payload)
- a function, that sends error to the client:error
- code or text of the error,payload
- any additional data.params
- object of data recieved from client.context
- special object for context managing (see below)
Every method must return either resp()
or err()
call.
Client Usage
import neapi from 'neapi/client';
const api = neapi.client({endpoint: '/api'});
...
const a = 7;
const b = 5;
const responce = await api.request('algebra','addition',{a,b});
if(responce.error)
alert("We have an error: " + responce.error);
else
alert("The sum is equal " + responce.payload);
Request
The client.request(namespace,method,params,context)
is a async function that accept 4 parameters and returns responce object:
namespace
- defines the namespace of the methodmethod
- the method, we calling on the API-serverparams
- object with any neccesary datacontext
- simple object, any data you wanna put to the context (see below)
Responce object
Responce object is method's return value. It is simple object with two properties:
error
- null if no error, text or code if error was sent by methodpayload
- any data sent from method.
Lifecycle Hooks
NeAPI is request-responce type API. Other words, client sends request with some parameters to API-server and wait for responce. There are 4 lifecycle hooks on this way:
onRequest
- client, call right before data will send to the serveronRecieve
- server, call when data coming to the server, but before any method will firedonSend
- server, call right after method's work before data will be sent to the clientonResponce
- client, call when data from client recieved
All hooks functions have two parameters:
packet
- raw object with data transmited in request-responce chaincontext
- special object for context managing (see below)
On client, onRequest
and onResponce
hooks can be defined in config during client object initialization:
// Client
import neapi from 'neapi/client';
const api = neapi.client({
endpoint: '/api',
onRequest: (packet,context) => console.log('Request:', packet),
onResponce: (packet,context) => console.log('Responce:', packet),
});
On server, onRecieve
and onSend
should be defined in middleware's initialization config:
const neapi = require('neapi/server');
const neapi_middleware = neapi.getMiddleware({
scheme:api_scheme,
onRecieve: (packet,context) => console.log('Recieve:', packet),
onSend: (packet,context) => console.log('Send:', packet)
});
Context Usage
Context is additional storage for any data that will be accesible during whole request-responce chain. You can set some context's data on request initialization, add some data in every hooks, and get whole context's data in responce on the client.
Usualy context may be used for users authentication. You may need to clear context in a middle of the chain to prevent sending useless data from server to client.
Let's look the stages where context may be accesible:
Client:
client.request(namespace,method,params,context_func)
- therecontext_func
is a function with single parameter which is a context object. You can set any initial context values on request this way:client.request( ........, context=>context.set('test',123) )
. It is not required.onRequest(packet,context)
- there and all next stagescontext
is special context object, that allows to get context values at current stage or set any additional data.
Server:
onRecieve(packet,context)
method(resp, err, params, context)
- context is accesible in every called methodonSend(packet,context)
Client:
onResponce(packet,context)
Context object
Context object can be used on these ways:
context.get()
- return whole context objectcontext.get(name)
- return value of the context's property with defined namecontext.merge({...})
- merge new object with context objectcontext.set(name,value)
- add or modify context's property with specified name and set the valuecontext.clear()
- remove all context datacontext.clear(name)
- remove property with specified name from context