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

jinang

v0.26.1

Published

Collection of Node.js / ECMAScript Gists

Downloads

8,004

Readme

jinang

Collection of Node.js / ECMAScript Mini Modules

coverage status of github.com/YounGoat/jinang

coverage status of github.com/YounGoat/jinang build status of github.com/YounGoat/jinang total downloads of jinang jinang's License latest version of jinang

Other Languages / 敬请等待 / 敬請等待
If links in this document not avaiable, please access README on GitHub directly.

Description

jinang is a collection of Node.js / ECMAScript mini modules.

The name jinang is abbreviation of "Jin-Nang", which in Chinese means a magic box. The modules in jinang are independent for each other, and are for different usage.

jinang is an incubator. Successful sub modules may be encouraged to be published as independent NPM packages.

Here is its pedigree.
jinang.pedigree

Table of Contents

Links

Get Started

// Modules are independent for each other and are suggested to be required independently.
const defineError = require('jinang/defineError');

const MyError = defineError('MyError', Error, function(message) {
    this.code = 'SOMETHING_IS_WRONG';
    this.message = message;
});

// ...
throw new MyError('Helo word!');

API

All sub-modules in jinang are independent from each other. Use require('jinang/<subModuleName>') to require the sub-modules.

For your convenience, avaiable modules included in jinang are listed here (alphabetically sorted):

  • absorb : Concatenate following array(s) to the firt one.
  • cloneObject : Copy some / all properties from object and return a new one.
  • co : A wrapper of generator function.
  • currying : Make function curried.
  • bufferReplace: Return a new buffer with all matches replaced.
  • defineError : Create customised Error class.
  • Directory : Make it easier to manage a directory.
  • forInObject : The combination of For...In and For...Of.
  • isGenerator : Judge whether it is a Generator.
  • isGeneratorFunction : Judge whether it is a Generator Function.
  • jointString : Concatenate strings with specified joint.
  • JsonFile : Wrapper of a JSON file.
  • modifyUrl : Modify URLs.
  • open : Open URI with matched application.
  • ordinal : Acquire the ordinal form of a natural number.
  • ott : Wrap a function to allow it invoked only once, twice or thrice.
  • readable2buffer : Read a stream and callback with a buffer.
  • papply : Partial application of a function.
  • parseOptions : Intelligently parse an option object.
  • PoC : Promise or Callback.
  • Progress : Progress simulator.
  • promiseRejectionAutoHandle : Avoid console warning when no cather defined.
  • promisible : Something like util.promisify() but the common error-first callback mode still available.
  • safeClone : A deep and partial clone method.
  • sleep : Make current process to "sleep" for a while.
  • sogo : To set something into object, or get something from object.
  • sort : Sort an array.
  • split : Split string in different ways.
  • table : Create a printable table or print a table directly in console.
  • trim : Trim everything.
  • TxtFile : Wrapper of a .txt file.
  • unescaping : A tiny and flexible template render.
  • uniq : Compare sibling items in an array and ignore the replications.
  • write : Write into a file. If file not exists, create it.

Why jinang

jinang is an incubator for creatives which will make programming with Node.js much easier.

Only mini modules without any dependencies may be put into jinang. Although every module is small enough, they all will be maintained carefully and seriously.

The Incubated