@thedevdesigner/helper-modules

Collection of commonly used helper modules written in TypeScript


Keywords
nodejs, typescript, jest, helper-functions, node
License
MIT
Install
npm install @thedevdesigner/helper-modules@1.0.7

Documentation

GitHub Workflow Status GitHub repo size NPM GitHub issues

@thedevdesigner/helper-modules

A collection of commonly used helper modules written in TypeScript

Tech Stack

  1. Node
  2. TypeScript
  3. Jest

Usage

  1. Install by running npm i @thedevdesigner/helper-modules@latest
  2. Use the modules by bringing it in your code, by using either the import syntax, or the require keyword.
// by using the import syntax
import { generatePasswordHash } from "@thedevdesigner/helper-modules";
// by using require keyword
const { generatePasswordHash } = require("@thedevdesigner/helper-modules");

Motivation

While working on projects, there are times when I write same/similar code that I had written many times before. Therefore, it only made sense to create a helper package to get out of this loop of writing the same code again and again, to improve productivity and adopt the modular approach.

Issues

Please add new issues here