# @xppkp/boost

> This project aims to boost the coding speed in NodeJS. It's developed for competitive programming and is still under development.

Latest version **0.1.3** (published 2023-08-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install @xppkp/boost
pnpm add @xppkp/boost
yarn add @xppkp/boost
bun add @xppkp/boost
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2023-08-26 |
| First published | 2023-08-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 26 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | XiaoPanPanKevinPan |
| Maintainers | xppkp |
| Keywords | io, scanf, c-like |

## Links

- npm: https://www.npmjs.com/package/@xppkp/boost
- Repository: https://github.com/XiaoPanPanKevinPan/boost
- Homepage: https://github.com/XiaoPanPanKevinPan/boost#readme
- Issues: https://github.com/XiaoPanPanKevinPan/boost/issues
- npm.io page: https://npm.io/package/@xppkp/boost

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 0.1.3 (latest) — 2023-08-26
- 0.1.2 — 2023-08-26
- 0.1.1 — 2023-08-25

## README

# Boost - Coding Speed Booster for NodeJS
This project aims to boost the coding speed in NodeJS. It's developed for competitive programming and is still under development.

## Install
To install this package, you can run this in your shell:
```bash
npm install @xppkp/boost 
# You can also run
npm install https://github.com/XiaoPanPanKevinPan/boost
```

## Import
After installing, you can write this in your script:
```js 
import * as boost from "boost";
```

To prevent verbose importing, you can use the shorthand:
```js 
import * as boost from "boost";
const { scanf, EOF, ps, print, printl } = await boost.shorthand();
```

## Usage
The best usage is:
```js
import * as boost from "@xppkp/boost"
const { scanf, printl, lsClose, lsIsEof } = await boost.shorthand();
while(!lsIsEof()) {
	const [x, y] = await scanf("%d %d");
	printl(`${x} + ${y} = ${x + y}`);
}
lsClose();
```

For more, see [this]( ./usage.md ).

---
_Source: https://npm.io/package/@xppkp/boost · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
