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

https://github.com/josunlp/friendlyhelper

A Typescript-based standard library with handy little methods like GUID generation, retrieving numbers from strings, and a bunch of other standard methods that usually need to be rewritten for each new project.
https://github.com/josunlp/friendlyhelper

typescript

Last synced: 4 months ago
JSON representation

A Typescript-based standard library with handy little methods like GUID generation, retrieving numbers from strings, and a bunch of other standard methods that usually need to be rewritten for each new project.

Awesome Lists containing this project

README

          

# FriendlyHelper

[![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0)
[![npm version](https://badge.fury.io/js/friendly-helper.svg)](https://badge.fury.io/js/friendly-helper)
[![GitHub issues](https://img.shields.io/github/issues/JosunLP/FriendlyHelper)](https://github.com/JosunLP/FriendlyHelper/issues)
![npm](https://img.shields.io/npm/dt/friendly-helper)
[![CodeFactor](https://www.codefactor.io/repository/github/josunlp/friendlyhelper/badge)](https://www.codefactor.io/repository/github/josunlp/friendlyhelper)
[![TypeScript](https://img.shields.io/badge/Developed%20in-TypeScript-blue?logo=typescript)](https://www.typescriptlang.org/)

A Typescript-based standard library with handy little methods like GUID generation, retrieving numbers from strings, and a bunch of other standard methods that usually need to be rewritten for each new project.

## Installation

npm install friendly-helper

## Usage

import { FriendlyHelper | Helper | H } from 'friendly-helper';

H.guid.generate(); // Generates a GUID

## License

MPL-2.0

## Tests

npm run test

## Docs

To this point, the library is just documented by code comments. If you want an example of a few of the methods, you can check the `./test/test.js` file.

## Support

Soon (TM)