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 🙏

© 2024 – Pkg Stats / Ryan Hefner

tlorc

v1.4.7

Published

Utils library for JavaScript/TypeScript, so you don't have to reinvent the wheel.

Downloads

48

Readme

Utils library for JavaScript/TypeScript, so you don't have to reinvent the wheel.

Installation

$ npm i -s tlorc

Examples

TloEventWrapper:

import {TloEventWrapper} from 'tlorc';

const el = document.getElementById('foo');
const tloEvent = new TloEventWrapper(el);

tloEvent.throttle('scroll', () => {
  // code here
});

TloHttp:

import {TloHttp} from 'tlorc';

const http = new TloHttp();
http.get('https://jsonplaceholder.typicode.com/todos/1')
  .then(data => console.log(data));

Documentation

Check https://github.com/tlo-devs/tlorc/wiki/

Patch Notes

1.4.4 (07.03.2021)

  • [TloEventWrapper] Fixed an issue with debounce

1.4.0 (24.06.2020)

  • Moved and extended the documentation (https://github.com/tlo-devs/tlorc/wiki/)
  • Fixed method types being displayed as props in the interfaces
  • [TloEventWrapper] Changed useCapture to be optional when adding an event with object syntax
  • [TloHttp] Fixed issues with PUT/DELETE
  • [TloHttp] Added support for Blobs
  • [TloHttp] Improved error handling
  • Added basic utils to [Tlorc]

1.3.0 (22.06.2020)

  • [TloHttp] Added a default Content Type header 'application/json'
  • [TloHttp] Added an optional 'headers' parameter to the constructor
  • [TloHttp] Added the option to modify instance-level headers via new TloHttp().headers

1.2.4 (22.06.2020)

  • [TloHttp] Fixed a bug with missing body

1.2.3

  • [TloEventWrapper] Fixed the bug where callbacks with an argument would need to be undefined checked
  • [TloEventWrapper] Added a functionality for all methods - now they all return their instance of TloEventWrapper, which allows for method chaining

1.2.2

  • Improved types for TloHttp
  • Fixed a typing bug with method$Full methods. Now, the return type for them is Promise<TloFullResponse<T>> (see docs).

1.2.0

  • Added params to TloHttp options

1.1.2

  • Fixed types for TloHttp body
  • Improved the docs

1.1.1

  • Added TloHttp - a fetch http client (see docs for more details)

1.0.1

  • Fixed a bug with removing event listeners
  • Fixed a bug with new TloEventWrapper(element) throwing an error for elements that may be null

1.0.0

  • Added add and debounce instance methods
  • Changed the event handler's name from TloEvent to TloEventWrapper
  • Added the option to set the useCapture parameter in TloEventWrapper methods
  • Added the docs
  • Fixed the callback reference

0.2.3

  • Fixed the main library path

0.2.2

  • Improved type checking

0.2.0

  • Added removing event listeners via tloEvent.remove('eventName') or tloEvent.removeAll().