node-simple-library-template
v0.0.0
Published
A template for making node libraries with simple build requirements using vanilla `tsc`.
Downloads
1
Readme
Node Simple Library Template
A template for making node libraries with simple build requirements using vanilla tsc.
Features
typescript: Type safety.typescript-transform-paths: Allows for@/absolute imports.vitest: Test libraryeslint: Code quality enforcement.prettier: Consistent formatting.husky: Git commit hooks for linter and testing enforcement.lint-staged: Efficient linting of staged chaged.cjsandesmbuild output
Installation
npm install node-simple-library-templateyarn add node-simple-library-templateUsage
import { someExport } from 'node-simple-library-template';
// Some code goes here
const result = someExport();Specific Behavior
Specific behavior documentation goes here.
API Reference
Exports
someExport(someInput: SomeType): SomeReturn
Export documentation goes here.
Types
SomeType
Type documentation goes here.
type SomeType = stringSomeReturn
Type documentation goes here.
type SomeReturn = stringLicense
MIT
