christophemarois / node-directus

Node API wrapper for the Directus CMS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-directus

A Node.JS wrapper for the Directus headless CMS API. Its only goal for the stable release is to provide reading helpers for the API, or simply put, to do only the R of CRUD.

Not ready for production.

Express.js example in ES2015 + Stage 3

import Directus from './src/directus.js'
const db = new Directus('http://192.168.33.6', 'fkCMPxSyvo7SNX8H');

app.get('/posts/:id', async (req, res) => {
  
  // Fetch post and render it
  let post = await db.table('posts').row(req.params.id);
  res.render('post.jade', { post });
  
}

API

(coming soon)

About

Node API wrapper for the Directus CMS

License:MIT License


Languages

Language:JavaScript 100.0%