A Bee Movie generator as a Node.js library written in TypeScript.
npm install beemovie --save
yarn add beemovie
Clone the repo with this command:
git clone https://github.com/roosterchicken/beemovie
and cd into the directory and run this command to build the .js
files into the dist folder.
npm run build
The Sentence() function generates a sentence by picking a sentence randomly from the Bee Movie script.
The Script() function prints out the entire Bee Movie script.
The Word() function generates a random word from the Bee Movie script.
The Paragraph() function generates a random sentence by generating 3-5 sentences either with a period or a question mark.
The Version() function prints out the version of the library.
const beemovie = require("beemovie");
// Prints out 1 sentence
console.log(beemovie.Sentence(1));
// Prints out 2 sentences
console.log(beemovie.Sentence(2));
const beemovie = require("beemovie");
// Prints out the entire Bee Movie Script
console.log(beemovie.Script());
const beemovie = require("beemovie");
// Prints out a word from the Bee Movie
console.log(beemovie.Word(1));
const beemovie = require("beemovie");
// Prints out a 3-5 sentence paragraph
console.log(beemovie.Paragraph());
// Prints out 2 3-5 sentence paragraphs
console.log(beemovie.Paragraph(2));
const beemovie = require("beemovie");
// Saves the output of the beemovie.Version() function into the variable barryversion
const barryversion = beemovie.Version();
console.log(`You are running beemovie v${barryversion}`);
import beemovie from "beemovie";
// Prints out 1 sentence
console.log(beemovie.Sentence(1));
// Prints out 2 sentences
console.log(beemovie.Sentence(2));
import beemovie from "beemovie";
// Prints out the entire Bee Movie Script
console.log(beemovie.Script());
import beemovie from "beemovie";
// Prints out a word from the Bee Movie
console.log(beemovie.Word(1));
import beemovie from "beemovie";
// Prints out a 3-5 sentence paragraph
console.log(beemovie.Paragraph());
// Prints out 2 3-5 sentence paragraphs
console.log(beemovie.Paragraph(2));
import beemovie from "beemovie";
// Saves the output of the beemovie.Version() function into the variable barryversion
const barryversion = beemovie.Version();
console.log(`You are running beemovie v${barryversion}`);