Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)