
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
Collection of Node.js / ECMAScript Mini Modules
Other Languages / 敬请等待 / 敬請等待
If links in this document not avaiable, please access README on GitHub directly.
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.

// 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!');
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):
util.promisify() but the common error-first callback mode still available.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.
FAQs
Collection of Node.js / ECMAScript Gists
The npm package jinang receives a total of 1,197 weekly downloads. As such, jinang popularity was classified as popular.
We found that jinang demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.