Skip to content
This repository was archived by the owner on Jul 5, 2022. It is now read-only.

netiam/netiam

Repository files navigation

netiam

Build Status Dependencies npm version

A pure REST library

This REST API library addresses some issues we had with API designs in our projects. It does not claim to provide a full featured solution and to be honest, it might never will. Nevertheless, someone might find this library useful. It works as connect middleware and you should be able to use it with any compatible infrastructure (e.g. express).

TOC

Get it

npm i -S netiam

Plugins

What can it do for you

  • Authentication (with passportjs and OAuth 2.0)
  • Authorization (through ACLs)
  • Relationships(on resource level)
  • Query language (OData filter expressions)
  • Completely stateless (except cookie based sessions for authentication in browser apps)
  • Support for the JSONAPI specification
  • Auto response format detection
  • Graph representation and rendering (as SVG)
  • Extensible with plugins

Getting started

Creates a single route, using the data plugin to add some data and returns everything as JSON.

import express from 'express'
import http from 'http'
import api from 'netiam'

const app = express()
const server = http.createServer(app)

app.get(
  '/users'
  api()
    .data({'Hello': 'World!'})
    .json()
)

server.listen(3000)

How it works

The core idea is to have a stack of plugins executed in an asynchronous way.

const path = api()
  .rest({})
  .json()

app.get('/foo', path)

Plugin example

export default function data(data) {
  return function(req, res) {
    res.body = data;
  }
}

Example

app.get(
  '/users',
  api()
    .auth()
    .rest()
    .acl.res()
    .jsonapi({})
)

Error handling

You do not need to handle common API errors on your own. The library responds to the client at least with a proper HTTP status code (e.g. 404 for document not found) automatically.

Tests

Using mocha with should for tests and istanbul to check coverage.

npm test

Supported by

License

MIT License

About

REST API library

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors