# jsmp-infra

> This homework is about introduction into web infrastructure. Introduction and package managers.

Latest version **1.0.5** (published 2020-04-01) · ISC license · 0 weekly downloads

## Install

```sh
npm install jsmp-infra
pnpm add jsmp-infra
yarn add jsmp-infra
bun add jsmp-infra
```

## 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 | 1.0.5 |
| Published | 2020-04-01 |
| First published | 2020-04-01 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 5.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Mariia Aloshyna |
| Maintainers | mariia_aloshyna |

## Links

- npm: https://www.npmjs.com/package/jsmp-infra
- Repository: https://github.com/mariia-aloshyna/cdp-jsmp-2020-winter
- Homepage: https://github.com/mariia-aloshyna/cdp-jsmp-2020-winter#readme
- Issues: https://github.com/mariia-aloshyna/cdp-jsmp-2020-winter/issues
- npm.io page: https://npm.io/package/jsmp-infra

## Dependencies (1)

- [lodash](https://npm.io/package/lodash.md) ^4.17.15

## Recent versions

- 1.0.5 (latest) — 2020-04-01
- 1.0.4 — 2020-04-01
- 1.0.3 — 2020-04-01
- 1.0.2 — 2020-04-01
- 1.0.1 — 2020-04-01
- 1.0.0 — 2020-04-01

## README

# Homework 5
This homework is about introduction into web infrastructure. Introduction and package managers.

## Prerequisites
You need to install [Node.js](https://nodejs.org/uk/). npm is distributed with Node.js which means that when you
download Node.js, you automatically get npm installed on your computer.

## Installing

Install with [npm](https://www.npmjs.com/):

```sh
$ npm install --save jsmp-infra
```

## Usage
```sh
const {
  arrayDiff,
  lowerCase 
} = require('jsmp-infra');
 
arrayDiff([1, 2, 2, 2, 3], [2]); // returns [1, 3]
 
lowerCase('recede'); // returns '()()()'
```

## Running the tests
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can run tests with the following command:
```sh
$ npm install && npm run compile && npm test
```

Or you can just execute `$ npm install && npm run prepublish` command

## Contributing
Pull requests and stars are always welcome.

## Authors
* Mariia Aloshyna

## License
This project is licensed under the ISC License.

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