@biased-ts/utils
TypeScript icon, indicating that this package has built-in type declarations

0.1.3 • Public • Published

utils

utils is a general purpose Typescript library.

It provides annotations, and classes to help make writing Typescript better.

Table of Contents
  1. Installation
  2. General Usage
  3. Documentation

Prerequisites

A general understanding of Typescript, generics, and Node/NPM.

For contributing it is expected that you understand the source code behind the library, and the general layout of the source code within.

Installation

This is a general example on how to install the utilities provided by this library.

  • npm
    npm install @biased-ts/utils --save

Usage

Depending on your use case, and what portion of the utility library you are using, these examples can vary.

For now, we are simply going to cover using the Getter and Setter annotations.

// Base, using the annotations
import { Getter, Setter } from '@biased-ts/utils';

class YourClass
{
    @Getter @Setter
    private example: string;
}

// Turns into
class YourClass
{
    private example: string;

    set setExample(val: string): void
    {
        example = val;
    }

    get getExample(): string
    {
        return example;
    }
}

Documentaion

At this current point in time, any documentation provided for this library is simply provided through using JSDoc comments; those are required to have detailed examples, descriptions, and other data.

Roadmap

  • [ ] Builder
  • [ ] Constructors
    • [ ] AllArgsConstructor
    • [ ] SomeArgsConstructor

See the open issues for a full list of proposed features (and known issues).

Acknowledgements

This section is here to give acknowledgement to anyone who contributes, or takes the time to report any issues within the source code; any efforts are heavily appreciated. Thank you all for your time, and thank you anybody who uses this.

Licencing

This project is "licenced" using the Unlicence licence, which makes this essentially have no licence, you are free to use this project, encorperate it, or otherwise do as you please. Although we are not responsible for it.

Readme

Keywords

none

Package Sidebar

Install

npm i @biased-ts/utils

Weekly Downloads

1

Version

0.1.3

License

unlicense

Unpacked Size

26.8 kB

Total Files

60

Last publish

Collaborators

  • acelikesghosts