0.1.0 • Published 3 years ago

@jasonsbarr/simple-io v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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 course.

Installation

npm install @jasonsbarr/simple-io

Usage

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

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

or

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

See documentation for more information.