Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alvarocastro/ember-validate
Validate.js as ES6 Module for Ember.js Apps
https://github.com/alvarocastro/ember-validate
ember ember-addon validate-js
Last synced: about 1 month ago
JSON representation
Validate.js as ES6 Module for Ember.js Apps
- Host: GitHub
- URL: https://github.com/alvarocastro/ember-validate
- Owner: alvarocastro
- License: mit
- Created: 2018-03-09T18:10:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-03T22:36:54.000Z (over 5 years ago)
- Last Synced: 2024-11-16T06:43:36.313Z (about 1 month ago)
- Topics: ember, ember-addon, validate-js
- Language: JavaScript
- Size: 96.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ember-validate
This ember addon allows the use of the [validate.js](https://validatejs.org/) library in [ember](https://ember-cli.com/) apps.
## Installation
As any other addon:
```
ember install ember-lodash
```## Usage
```
import validate from 'validate';
```Then you can use the `validate` object as is in the [docs](https://validatejs.org/#validate).
### Further reading
* [validate.js documentation](https://validatejs.org/)
## Credits
This addon is greatly inspired in [ember-lodash](https://github.com/mike-north/ember-lodash) from [Mike North](https://github.com/mike-north) which fulfills a similar purpose.