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

trader.ts

v1.9.48

Published

Trader.ts is a typescript UI library with server-side and client-side components. The different parts can be used independently but work together seamlessly. The main design goals are:

Readme

Trader.ts

Trader.ts is a typescript UI library with server-side and client-side components. The different parts can be used independently but work together seamlessly. The main design goals are:

  • No magic: just function calls.
    • No special file structure, special function names, build-time processing,...
  • The simplest possible mental model; no quirks
    • No hooks, no reconciliation, no dirty checking, ...
  • Fully typesafe, including communication between server and browser and back
  • Very small API surface
  • Provide just the basics to build on
  • Not a framework: It's a library that provides useful functions

Compared to solutions like React, Angular, Vue and Next.Js, trader.ts consists of only a handful of functions and a very simple mental model. It might seem too limited and simple at first, but the simple abstractions allow you to build anything you want on top of it.

Server: Node.JS

On the server, Trader.ts provides a Router to structure your application. You define the your application's routes, specify whether they return HTML or JSON data (or contain custom processing) and it provides a function to route and handle incoming HTTP requests.

// server.tsx
import { Route, Router, h } from "trader.ts";
import * as http from "node:http";

// A definition of a route, described by a URL with parameters
// The type of myFirstRoute is Route<{myOptionalParam: string | undefined}>
const myFirstRoute = Route.makeRoute("/?{myOptionalParam:string}");

// An object that will be passed to every handler.
// Can contain things like a handle to the database, caches, etc.
const myContext = {};

// Creating our router
const router = new Router.Router(myContext);

// Registering our first page
router.page(
  myFirstRoute,
  Router.noAuthorization,
  async function (myContext, { myOptionalParam }) {
    return (
      <html>
        <body>
          <h1>Ahoy matey!</h1>
          <h2>{myOptionalParam || ""}</h2>
        </body>
      </html>
    );
  }
);

const port = process.env.PORT || 4000;

// Starting the Node.Js HTTP Server
// Notice that Trader.ts does not start the server itself.
// It's not an HTTP framework, just a library,
// so any logging, debugging, etc is completely free for you to provide
http
  .createServer(function (req, res) {
    // Running our router function
    const routed = router.run({ redirectOnUnauthorizedPage: "/" }, req, res);

    if (routed === false) {
      res.writeHead(404);
      res.end();
    }
  })
  .listen(port);

console.log(`Listening on port ${port}`);

You can find a runnable example of this in ./example_server_only

Client: Browser

In the browser, Trader.ts allows you to render HTML dynamically, similar in its goals to UI libraries like React, Angular or Vue. Importantly, you mark data that can change in the browser with a Source datatype (similar to an observable). This might seem like a step back into the past of web development, but it makes everything much more simple and predictable.

// client.tsx
import { ClientComponents, UI, h } from "trader.ts";

// Our render function
function renderMyClientComponent(props: { startNumber: number }) {
  const counterS = new UI.Source(props.startNumber);
  return (
    <div>
      <h1>Hello from Trader.ts!</h1>
      {UI.dyn(counterS, (counter) => (
        <h2>Counter: {counter}</h2>
      ))}
      <button onclick={() => counterS.set(counterS.get() + 1)}>
        Add 1 to the counter
      </button>
    </div>
  );
}

const parent = <div></div>;
document.body.append(parent);

// Adding it to the DOM
ClientComponents.renderComponentClientside(
  parent,
  null,
  renderMyClientComponent,
  {
    startNumber: 2,
  }
);

You can find a runnable example of this in ./example_client_only

dyn (short for dynamic) is the most important function here, re-rendering everything inside when the Source changes. This might seem archaic, slow, etc. but it's just much easier to work with and perfectly suited for many applications. Inputs are implemented differently using observe to set the input's value property, avoiding obnoxious behavior.

Since the mental model is so simple, you can implement things like async loading, caching etc, all yourself exactly the way you want and only when you need them.

Client and server working together

In a project where both client and server are written in TypeScript and use Trader.ts, communication can be handled by Trader.ts in a fully type-safe way. Because there is no magic, the heavy lifting to accomplish this is done by two files (routes.ts and clientcomponents.ts) being shared by the client and the server bundles.

The two preceding examples are integrated into a single project. Note that file structure and file names are completely flexible.

You can find the full example in ./example.

// client.tsx
import { UI, h } from "trader.ts";
import * as routes from "./routes";

// Our actual render function
export function renderMyClientComponent(props: { startNumber: number }) {
  const counterS = new UI.Source(props.startNumber);
  return (
    <div>
      <h1>Hello from Trader.ts!</h1>
      {UI.dyn(counterS, (counter) => (
        <h2>Counter: {counter}</h2>
      ))}

      <div>
        <button onclick={() => counterS.set(counterS.get() + 1)}>+ 1</button>
      </div>

      <a href={routes.myFirstRoute.link({ myOptionalParam: "Hello" })}>
        A link to myself
      </a>
    </div>
  );
}
// routes.ts
import { Route } from "trader.ts";
import { apiSpec } from "trader.ts/router";

// A definition of a route, described by a URL with parameters
// The type of myFirstRoute is Route<{myOptionalParam: string | undefined}>
export const myFirstRoute = Route.makeRoute("/?{myOptionalParam:string}");

export const clientcomponentsJsRoute = apiSpec({
  route: Route.makeRoute("/out/clientcomponents.js"),
  method: "GET",
  body: null,
  returns: undefined as any, // TODO
});
// clientcomponents.ts

import { ClientComponents } from "trader.ts";
import { renderMyClientComponent } from "./client";

export const myClient = ClientComponents.registerClientComponentsSync({
  myClientComponent: renderMyClientComponent,
});

export type myClientComponents = ClientComponents.ClientComponentsExport<
  typeof myClient
>;
// server.ts
import * as http from "node:http";
import * as fs from "node:fs/promises";
import { ClientComponents, Router, h } from "trader.ts";
import { sendStatic, writeDataWithCompression } from "../../router.static";
import type { myClientComponents } from "./clientcomponents";
import * as routes from "./routes";

const renderClientComponent = ClientComponents.renderInBrowser<myClientComponents>();

// An object that will be passed to every handler.
// Can contain things like a handle to the database, caches, ...
const myContext = {
  renderClientComponent,
};

// Creating our router
const router = new Router.Router(myContext);

// Registering our first page
router.page(
  routes.myFirstRoute,
  Router.noAuthorization,
  async function (myContext, { myOptionalParam }) {
    return (
      <html>
        <head>
          <script
            type="application/javascript"
            src={routes.clientcomponentsJsRoute.route.link()}
          ></script>
        </head>
        <body>
          <h1>Ahoy matey!</h1>
          <h2>{myOptionalParam || ""}</h2>

          {myContext.renderClientComponent("myClientComponent", {
            startNumber: 2,
          })}
        </body>
      </html>
    );
  }
);

router.custom(
  routes.clientcomponentsJsRoute,
  Router.noAuthorization,
  async function (_ctx, _p, _b, _a, req, res) {
    return writeDataWithCompression(
      req,
      res,
      await fs.readFile("./out/clientcomponents.js")
    );
  }
);

const port = process.env.PORT || 5000;

// Starting the Node.Js HTTP Server
// Notice that Trader.ts does not start the server itself.
// It's not an HTTP framework, just a library,
// so any logging, debugging, etc is completely free for you to provide
http
  .createServer(function (req, res) {
    console.log(`Serving ${req.url || ""}`);

    // Running our router function
    const routed = router.run({ redirectOnUnauthorizedPage: "/" }, req, res);

    if (routed === false) {
      res.writeHead(404);
      res.end();
    }
  })
  .listen(port);

console.log(`Listening on port ${port}`);

Project status

Is this project finished? Not entirely. I've used it for years in multiple commercial projects, but it likely has edge cases I no longer notice. PR's, questions, and advice are very welcome!