poke-names

Get random pokemon names

Usage no npm install needed!

<script type="module">
  import pokeNames from 'https://cdn.skypack.dev/poke-names';
</script>

README

poke-names

release date release version licence MIT downloads size semantic-release

Get random names from Pokemon characters.

Installation

This package is distributed via npm or yarn:

npm install poke-names
yarn add poke-names

Usage

const pokemonNames = require('poke-names');
const allPokemonNames = pokemonNames.all;
const randomPokemonName = pokemonNames.random();
const threeRandomPokemonNames = pokemonNames.random(3);

Project Setup

This project assumes you have NodeJS v10 or greater installed. You should also have npm v6 or greater installed as well (this comes packaged with Node 10). You'll also need a recent version of git installed as well.

You may have come to this project from different varying sources. There are a different series of branches for each workshop/course I've done. To get started with the project, start with this:

  1. Sign up for a GitHub Account (if you don't already have one)
  2. Fork this repo
  3. Clone your fork
  4. In the directory you cloned the repository, run git fetch --all