https://github.com/seb-oss/frontend-tools
A set of frontend tools written in Typescript
https://github.com/seb-oss/frontend-tools
frontend frontend-tools frontend-utils javascript javascript-tools javascript-utils typescipt
Last synced: 24 days ago
JSON representation
A set of frontend tools written in Typescript
- Host: GitHub
- URL: https://github.com/seb-oss/frontend-tools
- Owner: seb-oss
- License: apache-2.0
- Created: 2019-10-29T09:02:59.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2023-07-18T20:35:16.000Z (almost 2 years ago)
- Last Synced: 2025-04-20T00:39:03.735Z (about 1 month ago)
- Topics: frontend, frontend-tools, frontend-utils, javascript, javascript-tools, javascript-utils, typescipt
- Language: HTML
- Homepage: https://github.com/sebgroup/frontend-tools/wiki
- Size: 3.07 MB
- Stars: 4
- Watchers: 6
- Forks: 1
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[](http://commitizen.github.io/cz-cli/)
[](https://github.com/semantic-release/semantic-release)
[](https://coveralls.io/github/sebgroup/frontend-tools?branch=master)
[](https://dependabot.com)
[](https://www.npmjs.com/package/@sebgroup/frontend-tools)
# **Frontend tools**
A set of frontend utilities that can be used with any javascript application. It's lightweight and intuitive.
This library is **tree-shakable** 🎉.
## **Installation**
### npm
```terminal
npm install @sebgroup/frontend-tools
```### yarn
```terminal
yarn add @sebgroup/frontend-tools
```## **Usage**
Using `isStrongPassword` utility as an example, this is how you import it:
### ES6
```typescript
import { isStrongPassword } from "@sebgroup/frontend-tools";
```### ES5
```typescript
const isStrongPassword = require("@sebgroup/frontend-tools");
```## **How to contribute**
Please read our [contributing guildines](https://github.com/sebgroup/frontend-tools/blob/master/CONTRIBUTING.md)
## **Documentation**
For detailed documentation about these utilites please visit our [wiki page](https://github.com/sebgroup/frontend-tools/wiki)