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 🙏

© 2025 – Pkg Stats / Ryan Hefner

tritonjs

v0.3.4

Published

[![NPM version](https://img.shields.io/npm/v/tritonjs.svg?style=flat-square)](https://www.npmjs.com/package/tritonjs) [![License](https://img.shields.io/npm/l/tritonjs.svg?style=flat-square)](https://github.com/fleetfn/triton/blob/master/LICENSE)

Downloads

30

Readme

NPM version License

Triton is a framework for Node.js built with Serverless Functions in mind as opposed to frameworks like Fastify, Express.js, Hapi which are built with a monolithic mindset.

Triton's Design is to be simple and Zero Config that allows you to create a fast API just by building a file and oriented to microservice architecture and can be easily deployed in a Serverless Function.

Development Experience

Triton is focused on API development experience and building a framework with Serverless Function in mind and incremental adoption.

import {FleetRequest, FleetResponse} from "@fleetfn/types";
import Database from "tritonjs/database";
import Auth from "tritonjs/auth";

const handler = (
  req: FleetRequest,
  res: FleetResponse
) => {
  res.send("Hello World!");
};

export const config = {
  middleware: [
    new Database(...),
    new Auth(...)
  ]
};

export default handler;

Easy to deploy

Triton is focused on API development experience and building a framework with Serverless Function in mind and incremental adoption.

> triton build

✔ Compiled Functions (1s)

APIs (6)
- GET           oauth /oauth/:proxy+
- GET | DELETE  user /user
- GET | DELETE  projectById /project/:id
- GET           auditLog /project/:id/audit-log
- POST          joinProject /project/:id/members/join
- GET           membersByProject /project/:id/members

Ready for deployment! Read the Fleet instructions to deploy your serverless functions.

> Run fleet deploy https://fleetfn.com/docs/quick-start.html

Getting Started

Visit https://tritonjs.io/docs/get-started to get started with Triton.js.

Documentation

Visit https://tritonjs.io/docs to view the full documentation.

Contributing

Feel free to create issues or submit pull requests. If you're interested in contributing code and/or documentation, please see our guide to contributing.

Authors