atikin-universal-validator
Version:
A blazing-fast, zero-dependency validator for frontend and backend JS/TS applications.
60 lines (41 loc) โข 1.78 kB
Markdown
# Atikin Universal Validator
A blazing-fast, universal input validator for **JavaScript** and **TypeScript** projects. Works perfectly on both **frontend and backend** with zero dependencies.
## ๐ Features
- โ
Zero dependencies
- ๐ Works on Node.js and browsers
- ๐งช Built-in validators (`isEmail`, `isStrongPassword`, etc.)
- ๐งฑ TypeScript support
- ๐ง Simple API without schemas
- ๐ฆ Ready for production
## ๐ฆ Installation
```bash
npm install atikin-universal-validator
## โจ Usage
```ts
import { isEmail, isStrongPassword, validate } from 'atikin-universal-validator';
isEmail("hello@example.com"); // true
const result = validate({
email: ["hello@example.com", "isEmail"],
password: ["Hello@1234", "isStrongPassword"]
});
console.log(result);
// { success: true, errors: {} }
## FOLLOW US ON For more information:
Join our social media for exciting updates, news, and insights! Follow us on :
<!--Table-->
| ACCOUNTS | USERNAME |
|------------ | -------------- |
| FACEBOOK | atikinverse |
| INSTAGRAM | atikinverse |
| LINKEDIN | atikinverse |
| TWITTER (X) | atikinverse |
| THREADS | atikinverse |
| PINTREST | atikinverse |
| QUORA | atikinverse |
| REDDIT | atikinverse |
| TUMBLR | atikinverse |
| SNAPCHAT | atikinverse |
| SKYPE | atikinverse |
| GITHUB | atikinverse |
Feel free to reach out if you have any questions or suggestions!
Happy Coding! ๐