# bungee-lib

> Bungee utilities library. 2.0.0 ~ async_executor overhaul

Latest version **2.0.1** (published 2021-02-24) · ISC license · 0 weekly downloads

## Install

```sh
npm install bungee-lib
pnpm add bungee-lib
yarn add bungee-lib
bun add bungee-lib
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.1 |
| Published | 2021-02-24 |
| First published | 2021-02-14 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 13.2 KB |
| Known vulnerabilities | 0 (+23 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | connor.hood234@gmail.com |
| Maintainers | connorh234 |

## Links

- npm: https://www.npmjs.com/package/bungee-lib
- Repository: https://github.com/connorh23/bungee-lib
- Homepage: https://github.com/connorh23/bungee-lib#readme
- Issues: https://github.com/connorh23/bungee-lib/issues
- npm.io page: https://npm.io/package/bungee-lib

## Dependencies (1)

- [axios](https://npm.io/package/axios.md) ^0.21.1

## Recent versions

- 2.0.1 (latest) — 2021-02-24
- 2.0.0 — 2021-02-24
- 1.3.0 — 2021-02-21
- 1.2.0 — 2021-02-20
- 1.1.2 — 2021-02-20
- 1.1.1 — 2021-02-20
- 1.1.0 — 2021-02-20
- 1.0.2 — 2021-02-14
- 1.0.1 — 2021-02-14
- 1.0.0 — 2021-02-14

## README

# bungee-lib
```bungee-lib``` is a set of JavascriptUtilities for use within the Bungee ecosystem.  
They are intended to be low-level, syntactical aids which are decoupled from any other Bungee modules.

---
## Installation
``` 
npm install bungee-lib
```
---
## Usage Examples
The ```environment``` module allows ease-of-access to the local environment.
```javascript
// Load the environment module
const { environment } = require('bungee-lib');

// Easily set environment varaibles
environment.config({
    FOO: "bar"
});

// Access your .env as well as vars passed via .config() above
console.log(environment.vars.NODE_ENV); // development etc.
console.log(environment.vars.FOO);      // bar
```
TODO - add ```requests``` and ```responses``` documentation

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