0.1.3 • Published 3 years ago

@biased-ts/utils v0.1.3

Weekly downloads
-
License
unlicense
Repository
github
Last release
3 years ago

utils

utils is a general purpose Typescript library.

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


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.

0.1.3

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago