in8n
v1.0.9
Published
A Node.js utilities library.
Readme
in8n
A Node.js utilities library.
Installation
npm install in8nUsage
import { hash } from 'in8n';
const result = hash('hello', 'world');
console.log(result); // SHA-256 hash of "helloworld"Development
npm install
npm run devBuilding
npm run buildPublishing
This package is automatically published to npm when a new git tag is created:
git tag v1.0.0
git push origin v1.0.0Setup for Publishing
- Create an npm account at https://www.npmjs.com/
- Generate an npm token at https://www.npmjs.com/settings/tokens
- Add the token as a GitHub secret named
NPM_TOKENin your repository settings - Create and push a git tag to trigger the publish workflow
