New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@biased-ts/utils

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@biased-ts/utils

A general set of (heavy biased) utilities for Typescript.

latest
Source
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

utils

utils is a general purpose Typescript library.

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

Table of Contents

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.

FAQs

Package last updated on 28 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts