JSPM

  • Created
  • Published
  • Downloads 58
  • Score
    100M100P100Q28913F
  • License MIT

βœ… Validation library for ES6+ modules

Package Exports

  • validatees
  • validatees/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (validatees) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

validatees

Bundle size  Downloads  License  Version  GitHub Repo stars  GitHub issues

Validation package for ES6+, TypeScript and JavaScript(CommonJS and Module) ready.

Features

  • πŸš€Easy to use: Easy to install in your project.
  • βœ…ES6+ && TS: TypeScript and ES6+ support(JS).
  • 🐭Small footprint: With less then 20kb, you won't even notice.
  • πŸ“¦No dependencies: You don't depend on anything else.

Getting Started

Installation

To use this package, install using npm, yarn or pnpmπŸ“₯:

# npm
npm install validatees
# yarn
yarn add validatees
# pnpm
pnpm install validatees

Usage

// ES6+ JavaScript CommonsJs
const validatees = require("validatees");
// TypeScript || ES6+ JavaScript module
import validatees from "validatees";

Documentation

For more information, please visit the documentation.

Contributing

Found a bug🦟? or want to suggest a new featureπŸ†•? or just want to helpπŸ†˜?
Feel free to open an issue or a pull request.

Contributions are always welcome!πŸŽ‰

  • Fork the project here.
  • Create a new branch like this: git checkout -b feature/featureName.
  • Commit your changes to your branch: git commit -m 'Create AwesomeFeature'βš™οΈ.
  • Push your branch: git push origin feature/featureName.
  • Open a pull request on the dev branch hereπŸ”ƒ.

πŸ“’Note: Make sure to add tests for your changes βœ….