1.4.3 • Published 6 years ago

object-to-md v1.4.3

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

object-to-md

Convert JS Object to leaf api schema

Installation

$ npm i object-to-md -S

Usage

const ots = require('object-to-md');

const obj = {
  id: 100,
  owner: {
    show: true,
    login: 'japsu',
  },
  name: 'Tom',
  books: [
    {
      name: 'Hackers and Painters',
      author: 'Paul Graham',
    },
  ],
};

const jsonSchema = ots.json(obj);
const apiSchema = ots.api(obj);

console.log(JSON.stringify(jsonSchema, null, 2));
1.4.3

6 years ago

1.4.2

6 years ago

1.4.1

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago