@zajno/common
v2.4.5
Published
Zajno's re-usable utilities for JS/TS projects
Downloads
1,568
Readme
Zajno's Toolbox
This is a library with a useful utils/helpers to share across our projects.
The motivation to have this – just to control and organize some shared code that we ever wanted to write by ourselves.
Contents
API: a middle-layer REST API endpoints definition helpers, to have communication described declarative & type-safely.
- Timeouts: a promisified
setTimeout
-setTimeoutAsync
;timeoutPromise
- a promise that rejects after a timeout; - ManualPromise: a promise that can be resolved/rejected manually;
- Array extensions:
someAsync
,everyAsync
,forEachAsync
,mapAsync
(previously were Array.prototype extensions);
- Timeouts: a promisified
Date extensions & helpers: operations with granularity, date formatting etc;
- Period: a structure to work with date periods e.g. 1 day, 5 years etc;
- CalendarIndex: a structure to work with day, week, month indexes;
- Shift dates: shift dates by period, get start/end of with granularity etc;
Fields: work with object fields: skip/filter falsy, transfer falsy/changed; merge arrays of objects.
Functions:
assert
,IDisposable
/Disposable
/Disposer
,ThrottleAction
/ThrottleProcessor
.Lazy:
Lazy
(sync),LazyPromise
.Logger interface & console implementation: create instance of logger, inject your own implementation or globally enable/disable logger instances by calling
setMode
.- General helpers:
clamp
,round
,random
, intersections helpers and more; - Array helpers: compare, max, min, average, count, normalize, shuffle, etc;
- Math Objects helpers: do arithmetical operations on objects with number fields;
- Distribution: simple distribution by a type;
- General helpers:
Models: helpers for moving on towards OOP world.
EntityWithStatus
: a base class for entities with a string status, keeps history of status changes;Model
: a simple base class (box) forvalue
s setter/getter;LoadingModel
: aggregates multiple loading flags into one;LogicModel
: a helper base class which helps to run async logic withPromiseExtended
(see below);- various interfaces and helpers for models.
Event
: a simple event emitter;OneTimeLateEvent
: an event emitter that can be listened to after it's been emitted;- Others:
ThrottledEvent
,Timer
,ProgressTracker
and more.
Storage: abstractions + helpers for sync/async storages;
Path
: a helper to build (almost) type-safe dynamic paths (useful for routing definitions);Queues
:ParallelQueue
(helps run & track multiple prioritized async tasks),TasksQueue
(a simple queue for async tasks with a limit for concurrent tasks);PromiseCache
: a cache for Promise'd values; supports TTL, invalidation, custom keys, deferred getters and more;PromiseExtended
: a Promise wrapper which never rejects but providesonSuccess
andonError
callbacks;PromiseProxy
: a Promise wrapper to mimic (fake) a resolved value's properties until it's actually resolved;Enum helpers
:EnumHelper
,EnumStringHelper
,EnumBitwiseHelper
;- Misc:
Pool
,LinkedList
,TempoCache
(invalidates sync values after a timeout),ExpireTracker
,NamesHelper
and more.
Types
:DeepReadonly
,DeepMutable
,DeepPartial
,DeepRequired
etc.,Getter
,Ident
and various others.Validation
: abstractions & helpers for validation.
Tests
Tests are written with Vitest, coverage is (kinda) tracked with Coveralls. Test coverage is mainly dictated by real-world usage in the projects.
Usage
Sources are in TypeScript, shipped as CJS & ESM modules targeted on ES2022
.
Distribution
There's no barrel exports, so you can import each module separately. Each index.ts
file is outlined in generated package.json
's exports
field. Might require tslib
as a peer dependency.
The package does't really use semver
for now, breaking changes to existing modules can be introduced in minor versions, so it's recommended to use ~
in your package.json
's dependencies. New modules can be introduced in minor & patch versions.
Install
- Install from NPM:
npm i @zajno/common
- In your code, use each module separately:
import logger, { ILogger } from '@zajno/common/logger';
Local development (a guide to Yalc)
If you plan to update the sources while using it in your project, we'd recommend using yalc
. It does some magic to allow both using it in your project and updating it.
The flow will look like the following. [1] – operations made on this project, [2] – operations made on dependant project.
- install
yalc
globally [1]
fork (if you're outside Zajno) and clone this project, donpm i
[1]
runyalc publish --private
[2]
runyalc add @zajno/common && npm i
[1]
make changes in local copy, run tests etc.[1]
run some magic:npm run publish:local
– this should deliver your updated copy to local project(s) [2][2]
notice the changes in your project, repeat 5-7 until you're done[2]
to cleanup, runyalc remove @zajno/common
or justyalc remove --all
[1]
push your changes after making sure it's OK, we'd say thank you for a PR![2]
re-add the package into your project or specify tag/commit (e.g.npm upgrade @zajno/common
)