npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

decoval

v1.0.1

Published

DecoVal is a decorator-driven validation pattern that allows you to add validation rules directly to the properties of TypeScript classes, simplifying data control and increasing code readability and reusability.

Readme

DecoVal

DecoVal is a decorator-driven validation pattern that allows you to add validation rules directly to the properties of TypeScript classes, simplifying data control and increasing code readability and reusability.

Author: Kaike Bartolomeu
NPM Package: decoval official documentation: decoval-docs


🚀 How to Install

npm install decoval
yarn add decoval
pnpm add decoval

Required Configuration

Enable decorators in TypeScript by adding the below options to tsconfig.json:

{
  "compilerOptions": {
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true
  }
}

Usage Examples

This example uses Decoval decorators to validate a User model with strict input rules: username requires a number and no spaces, password needs a special character and no spaces, and status must be a boolean. Ideal for secure login or account creation flows.

import "reflect-metadata";
import { DvText, DvBoolean, decoValidation } from "decoval";

class User {
  @DvText({ noSpaces: true, number: true })
  username!: string;

  @DvText({ emailProviders: ["gmail.com", "yandex.com"] })
  email!: string;

  @DvText({ specialChar: true })
  password!: string;

  @DvBoolean()
  status!: boolean;
}

Use with Express

This example shows how to use the decoval library with Express.js to validate data from a POST request. The User class uses @DvText decorators to define validation rules for name, email, and password. The decoValidation function automatically validates the data based on these annotations. If the data is valid, the server returns validated JSON; otherwise, it issues a 400 error. This approach keeps validation separate from routing logic, making it easier to reuse and organize code in modern REST APIs.

import express, { Request, Response } from "express";
import cors from "cors";
import morgan from "morgan";
import { DvText } from "./dv/dv.text";
import { decoValidation } from "decoval";

const app = express();
app.use(express.json()).use(cors()).use(morgan("dev"));

class User {
  @DvText()
  name!: string;

  @DvText({ specialChar: true })
  password!: string;

  @DvText({ emailProviders: "gmail.com" })
  email!: string;
}

type TUser<T> = {
  [K in keyof T]: T[K];
};

app.post("/", async (req: Request<{}, {}, TUser<User>>, res: Response) => {
  try {
    const { email, name, password } = req.body;
    const user = new User();
    user.email = email;
    user.name = name;
    user.password = password;

    const data = await decoValidation(user);
    res.status(201).json(data);
  } catch (error) {
    res.status(400).json(error);
  }
});

const port: number = 4000;

app.listen(port, () => console.log(port));

Decorators Available

  • @DvText()
  • @DvNumber()
  • @DvId()
  • @DvIP()
  • @DvURL()
  • @DvBooelean()
  • @DvEnum()
  • @DvArray()
  • @DvDate()
  • @DvCustom()

Conclusion

DecoVal is a robust and simple solution for data validation in TypeScript applications. With an elegant decorator-based syntax, it offers rich validations that are adaptable to the real business context.

📬 Contributions and suggestions are welcome! 🔗 Official repository: github.com/kaikebartolomeu/decoval