Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 5 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 (about 5 years ago)
- Default Branch: develop
- Last Pushed: 2023-07-18T20:35:16.000Z (over 1 year ago)
- Last Synced: 2024-10-07T16:48:32.493Z (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: 3
- Watchers: 7
- Forks: 1
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![Coverage Status](https://coveralls.io/repos/github/sebgroup/frontend-tools/badge.svg?branch=master)](https://coveralls.io/github/sebgroup/frontend-tools?branch=master)
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=sebgroup/frontend-tools)](https://dependabot.com)
[![npm version](https://badge.fury.io/js/%40sebgroup%2Ffrontend-tools.svg)](https://www.npmjs.com/package/@sebgroup/frontend-tools)
![tree shakable](https://img.shields.io/badge/%F0%9F%8C%B2-tree--shakable-brightgreen)# **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)