npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

baiji-entity

v1.1.3

Published

Expose API fields for endpoint user

Downloads

374

Readme

Baiji Entity

Build Status

An elegance way to restrict API outputs for any web frameworks.

Baiji Entity gives you a simple schema for declaring JSON structures thats beats manipulating giant javascript object structures. This is particularly helpful when the generation process is fraught with conditionals and loops.

Installation

npm install baiji-entity

# or

yarn add baiji-entity

Example

const Entity = require('baiji-entity');

// Presume we have a article object that needs to parse
let article = {
  id: 1,
  content: 'article content ...',
  likesCount: 42,
  wordsCount: 12422,
  favoritesCount: 23,
  commentsCount: 578,
  visitors: 15,
  createdAt: 1530003456793,
  updatedAt: 1530008548865,
  author: {
    id: 789,
    name: 'Felix',
    email: '[email protected]',
    articlesCount: 65,
    password: 'xxxxxxx'
  },
  comments: [
    {
      content: 'Hello everyone!',
      createdAt: '2018-03-29T20:45:28-08:00'
    },
    {
      content: 'To you my good sir!',
      createdAt: '2018-04-16T20:23:24-08:00'
    }
  ]
}

// Define an article entity
let articleEntity = new Entity({
  id: Number,
  content: String,
  visitors: Number,
  createdAt: Date,
  updatedAt: Date,
  author: {
    name: String,
    email: String,
  },
  comments: [{
    content: String,
    createdAt: Date
  }]
});

// Parse article data
articleEntity.parse(article);

// Outputs =>
{ id: 1,
  content: 'article content ...',
  visitors: 15,
  createdAt: '2018-06-26T08:57:36.793Z',
  updatedAt: '2018-06-26T10:22:28.865Z',
  author: {
    name: 'Felix',
    email: '[email protected]'
  },
  comments: [
    {
      content: 'Hello everyone!',
      createdAt: '2018-03-30T04:45:28.000Z'
    },
    {
      content: 'To you my good sir!',
      createdAt: '2018-04-17T04:23:24.000Z'
    }
  ]
}

// See, only those fields specified will be exposed and formatted as we expect

Usage

General configurations

Entity provide two global options that will help to simplify the entity definition.

Entity.types

Set default value to different types. Defaults are undefined for all kinds of types.

NOTE: Only date type has format property, all types have default property.

And format property have two limit options: iso and timestamp.

Example:

Entity.types = {
  string: { default: '' },
  number: { default: 0 },
  boolean: { default: false },
  date: { format: 'iso', default: '' },
  object: { default: {} }
};

Entity.renames

Set default config to alter one key's name to another.

Example:

Entity.renames = { _id: 'id' };

const entity = new Entity({
  _id: String
});

console.log(entity.parse({}));

// output => { id: '' }

Same effect as:

const entity = new Entity({
  _id: { type: 'string', as: 'id', default: '' }
});

console.log(entity.parse({}));

// output => { id: '' }

Defining Entities

Normal Definition
const Entity = require('baiji-entity');

const entity = new Entity({
  name: { type: 'string' },
  sex: { type: 'number', as: 'gender' },
  age: { type: 'number', default: 18 },
  isAdult: {
    type: 'boolean',
    get(obj) {
      return obj.age >= 18 ? true : false;
    }
  },
  girlfriend: {
    type: 'boolean',
    default: true,
    if: function(obj) {
      return obj.age >= 16 ? true : false;
    }
  },
  social: {
    type: 'object',
    using: SomeEntity,
    get(obj, options) {
      return {};
    }
  }
});
Simpler Definition

You can use the simpler syntax to define an entity. Attention please set Global config at project initialization.

const Entity = require('baiji-entity');
const entity = new Entity({
  // like: { type: 'string', as: 'id', default: '' }
  _id: String,
  // like: { type: 'string', default: '' }
  name: String,
  // like: { type: 'number', default: 0 }
  age: Number,
  // like: { type: 'date', format: 'iso', default: '' }
  birthday: Date
});

// Or you can have a different default value
const entity = new Entity({
  // like: { type: 'string', default: 'baiji' }
  name: 'baiji',
  // like: { type: 'number', default: 10 }
  age: 10,
});

Static methods

Entity.isEntity(entity)

Check if an entity object is instance of Entity object

Entity.isEntity(entity);

Entity.clone(entity)

Clone provided Entity object

Entity.clone(entity);

Entity.copy(entity)

An alias for .clone method

Entity.copy(entity);

Entity.extend(entity, object)

Extend a new Entity object based on provided one and object

Entity.extend(entity, { name: true });

Instance methods

entity.isEntity(entity)

For Entity instance this always return true

entity.isEntity(entity);

entity.pick(string|object)

Pick specific fields from current entity, return a new entity

const entity = new Entity({
  id: String,
  name: String,
  age: Number,
  children: [{
    id: String,
    sex: Number
  }]
});

const pickedEntity = entity.pick('id name children{ id }');
/**
 * => entity
 * {
 *   id: String,
 *   name: String,
 *   children: [{ id: String }]
 * }
 */

entity.add(field1[, field2, ..., fieldn, options, fn])

Add fields with corresponding value or function for final exposure, method could be chained

Options:

  • as: rename the field to exposure
  • value: set specific value for field
  • default: set default value for undefined field
  • type: normalize field value according to type option, case ignored, see more at https://github.com/baijijs/normalizer
  • format: only applied for valid Date value, which automatically turn type option to string, now support format of iso and timestamp, case ignored
  • if: set a filter to determine if the field should be return, accept an object and return boolean
  • using: use another Entity instance as the filed value
  • get: function, for further manipulation of inputed object according to options

fn optional, for further manipulation of inputed object according to options

let entity = new Entity();
entity.add('name', { type: 'string' });
entity.add('name', { type: 'string', as: 'fullname' });
entity.add('sex', { type: 'number', value: 'male' });
entity.add('isAdult', { type: 'boolean' }, function(obj) { return obj && obj.age >= 18; });
entity.add('isAdult', { type: 'boolean', get(obj) { return obj && obj.age >= 18; } });
entity.add('activities', { using: myActivityEntity });
entity.add('extraInfo', { using: myExtraInfoEntity });
entity.add('condition', { if: function(obj, options) { return true } });

entity.safeAdd(field1[, field2, ..., fieldN, options, fn])

Same as .add function, return a new entity instead of modifying itself

entity.expose

An alias method for .add

entity.safeExpose

An alias method for .safeAdd

entity.unexpose

Unexpose certain field, used for extended entity

entity.parse(object[, options, converter])

Parse an input object according to Entity exposure definition

Options:

  • overwrite: for fields with value of undefined, if default value is provided from Entity definition, then set this field value of input object with default value
// Require baiji-entity module
const Entity = require('baiji-entity');

// Define userEntity
const userEntity = new Entity({
  name: { type: 'string' },
  city: { type: 'string' },
  age: { type: 'number', default: 0 },
  gender: { type: 'string', default: 'unknown' },
  isAdult: [{ type: 'boolean', default: false }, function(obj, options) {
    return (obj && obj.age >= 18 ? true : false);
  }],
  points: { type: 'number', value: 100, if: function(obj, options) { return obj && obj.age >= 18; } },
  description: { as: 'introduction', type: 'string', default: '' },
  isSignedIn: {
    type: 'boolean',
    get(obj, options) {
      return (options && options.isSignedIn ? true : false);
    }
  },
  birthday: { default: '', type: 'date', format: 'iso' }
});

// Parse source data
userEntity.parse({
  name: 'Felix Liu',
  age: 18,
  city: 'Shanghai',
  birthday: new Date('2015-10-10 10:00:00'),
  description: 'A programmer who lives in Shanghai',
  password: 'xxxxxxx'
}, { isSignedIn: true });

// The parsed output will be as below ⬇️

{
  name: 'Felix Liu',
  city: 'Shanghai',
  age: 18,
  gender: 'unknown',
  isAdult: true,
  points: 100,
  introduction: 'A programmer who lives in Shanghai',
  isSignedIn: true,
  birthday: '2015-10-10T02:00:00.000Z'
}

License

MIT