# mla-node-gen

> Create MLA papers in JavaScript

Latest version **1.0.0** (published 2022-03-09) · ISC license · 0 weekly downloads

## Install

```sh
npm install mla-node-gen
pnpm add mla-node-gen
yarn add mla-node-gen
bun add mla-node-gen
```

## 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.0 |
| Published | 2022-03-09 |
| First published | 2022-03-09 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 4 KB |
| Known vulnerabilities | 0 (+12 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Keizou Wang |
| Maintainers | keizouw8 |
| Keywords | mla, formatting, essay |

## Links

- npm: https://www.npmjs.com/package/mla-node-gen
- Repository: https://github.com/Keizouw8/mla-gen
- Homepage: https://github.com/Keizouw8/mla-gen#readme
- Issues: https://github.com/Keizouw8/mla-gen/issues
- npm.io page: https://npm.io/package/mla-node-gen

## Dependencies (1)

- [jspdf](https://npm.io/package/jspdf.md) ^2.5.1

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2022-03-09

## README

# MLA Node Gen
The MLA formatted PDF generator.

## Installation
This is an NPM package, so it can simply be installed like this:
```shell
$ npm install mla-node-gen
```

## Usage
In NodeJS:
```js
const { Doc, Paragraph } = require("mla-node-gen");

const doc = new Doc({
	title: "Example PDF",
	user: "Rick Astley",
	instructor: "Dwayne Johnson",
	course: "Dying 101",
	duedate: "22 February 2022"
});

const paragraph1 = new Paragraph(`According to all known laws of aviation...`);
const paragraph2 = new Paragraph(`We've known eachother for so long...`);
const paragraph3 = new Paragraph(`Somebody once told me the world is gonna roll me...`);

doc.addParagraph(paragraph1);
doc.addParagraph(paragraph2);
doc.addParagraph(paragraph3);

doc.export("example.pdf");
```

## Why use MLA Node Gen?
For those who are just a little too good for Google Docs or Microsoft Word, but won't stoop down to handwriting PDF code, this package is a quick and easy way to create PDF documents formatted in the most popular format.

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