Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jasonsbarr/simple-io

A collection of simple IO functions for a Node.js environment.
https://github.com/jasonsbarr/simple-io

cli files input io nodejs output

Last synced: 3 days ago
JSON representation

A collection of simple IO functions for a Node.js environment.

Awesome Lists containing this project

README

        

# Simple IO

A collection of file and console IO functions for use in a Node.js environment.

Created for my [Introduction to Computer Science and Programming in JavaScript](https://github.com/jasonsbarr/intro-to-programming-javascript) course.

## Installation

```
npm install @jasonsbarr/simple-io
```

## Usage

You can either `require` or `import` the package based on your needs:

```js
import { readFile } from "@jasonsbarr/simple-io";
```

or

```js
const { readFile } = require("@jasonsbarr/simple-io");
```

See [documentation](https://jasonsbarr.github.io/simple-io/) for more information.