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

@teloce/std

v1.4.0

Published

Teloce standard library - filters, transitions, animations, and utilities

Readme

@teloce/std

Author: Aldane Hutchinson

teloce: A JavaScript template engine for Python web developers.

Standard library for Teloce — filters, transitions, animations, and utilities.


Installation

npm install @teloce/std

Filters

String Filters

import {
  capitalize,
  uppercase,
  slugify,
  truncate,
} from '@teloce/std';

Use these filters in Teloce templates:

{{ 'hello world' | capitalize }}
<!-- "Hello world" -->

{{ 'hello' | uppercase }}
<!-- "HELLO" -->

{{ 'Hello World' | slugify }}
<!-- "hello-world" -->

{{ 'long text...' | truncate:10 }}
<!-- "long tex..." -->

Number Filters

import {
  currency,
  percent,
  number,
} from '@teloce/std';
{{ 19.99 | currency }}
<!-- "$19.99" -->

{{ 0.25 | percent }}
<!-- "25%" -->

{{ 1234567 | number }}
<!-- "1,234,567" -->

Date Filters

import {
  dateFormat,
  timeAgo,
} from '@teloce/std';
{{ date | dateFormat:'YYYY-MM-DD' }}
<!-- "2024-01-01" -->

{{ date | timeAgo }}
<!-- "2d ago" -->

Array Filters

import {
  first,
  last,
  pluck,
  orderBy,
} from '@teloce/std';
{{ items | first }}
<!-- First item -->

{{ items | pluck:'name' }}
<!-- ['name1', 'name2'] -->

{{ items | orderBy:'price':'desc' }}
<!-- Sort by price descending -->

Transitions

Teloce provides built-in helpers for common DOM transitions.

import {
  fade,
  slide,
  scale,
  withTransition,
} from '@teloce/std';

Fade

await fade(element);

Slide

await slide(element, {
  duration: 500,
});

Transition Wrapper

await withTransition(
  () => {
    element.innerHTML = 'New content';
  },
  fade,
  element
);

Animations

Teloce includes helpers for common animations.

import {
  pulse,
  shake,
  spin,
  fadeIn,
  fadeOut,
} from '@teloce/std';

Pulse

await pulse(element);

Shake

await shake(element, {
  duration: 400,
});

Spin

await spin(element);

Fade In / Fade Out

await fadeIn(element);
await fadeOut(element);

Custom Filters

Create and register your own filters.

import {
  registerFilter,
  createFilter,
} from '@teloce/std';

registerFilter(
  'reverse',
  createFilter((value) => {
    return value
      .split('')
      .reverse()
      .join('');
  })
);

Use the custom filter in a template:

{{ 'hello' | reverse }}
<!-- "olleh" -->

Custom Transitions

Create custom transitions by defining the starting and ending styles.

import { createCustomTransition } from '@teloce/std';

const myTransition = createCustomTransition(
  {
    transform: 'scale(0)',
    opacity: '0',
  },
  {
    transform: 'scale(1)',
    opacity: '1',
  },
  {
    duration: 500,
  }
);

await myTransition(element);

API Overview

| Category | Features | | ---------------------- | ------------------------------------------------ | | String Filters | capitalize, uppercase, slugify, truncate | | Number Filters | currency, percent, number | | Date Filters | dateFormat, timeAgo | | Array Filters | first, last, pluck, orderBy | | Transitions | fade, slide, scale, withTransition | | Animations | pulse, shake, spin, fadeIn, fadeOut | | Custom Filters | registerFilter, createFilter | | Custom Transitions | createCustomTransition |


License

MIT