2.0.2 • Published 8 years ago

inputjs v2.0.2

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

Inputjs

Javascript Input Class with Joi validatior

Install

npm install inputjs --save

Example

import InputJS from 'inputjs';
import joi from 'joi';

class ExampleInput extends InputJS {
  constructor(data = {}) {
    super(data, {
      id: joi.string().required(),
      name: joi.string().required(),
    });
  }
}
2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago