Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/jasonsbarr/simple-io
- Owner: jasonsbarr
- License: mit
- Created: 2021-05-19T12:38:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-19T17:36:45.000Z (over 3 years ago)
- Last Synced: 2024-12-06T10:36:15.809Z (about 1 month ago)
- Topics: cli, files, input, io, nodejs, output
- Language: JavaScript
- Homepage: https://jasonsbarr.github.io/simple-io/
- Size: 554 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.