@cloud-technology/input-buffer
v0.2.17
Published
File System Path Input Serializer + Prompt
Downloads
16
Readme
@cloud-technology/input-buffer
A Zero-Dependency JSON-Buffer-Serializer Prompt via Node.js
...
Table of Contents
Usage
@cloud-technology/input-buffer
uses the latest Node.js LTS version; to quickly enable, run nvm use
.
- See installation guide for a quick walk-through on installing
nvm
.
Development
Recommended - Testing Mode
Locally developing with jest
file-watchers helps ensure non-breaking change are introduced.
- Install Dependencies
npm install --quiet
- Build
*.ts
File(s), Enabling TSC File-Watchingnpm run build
- Open an Additional TTY and Run
npm run start
Lastly, continue with development.
For alternative build & unit-testing commands, please refer to the commands list.
Common-JS
const Main = async () => {
const { $ } = await import("@cloud-technology/input-buffer");
// ...
}
( async () => await Main() )();
Modules
import { $ } from "@cloud-technology/input-buffer";
// ...