This is a simple NPM package that generates random phrases from a predefined list of things Agile Coaches might say
To install the package, clone the repository and run:
npm install agile-coach-phrase-gen
You can use the getRandomPhrase
function from the package to get a random phrase. Here’s how to do it:
- Import the function in your TypeScript or JavaScript file:
import { getRandomPhrase } from 'random-phrases';
- Call the function to get a random phrase:
const phrase = getRandomPhrase();
console.log(phrase);
An example of how to use the package can be found in the example.js
file. You can run the example with:
node example.js
This project is licensed under the MIT License.