nom-de-guerre

returns a random name of a place in Québec

Usage no npm install needed!

<script type="module">
  import nomDeGuerre from 'https://cdn.skypack.dev/nom-de-guerre';
</script>

README

nom-de-guerre

a simple random naming module. more fun than numbered ID's sometimes.

Usage

var nomDeGuerre = require('nom-de-guerre');

nomDeGuerre() // -> will output random place in Québec

Methods

nomDeGuerre()

returns a random city name from Québec

nomDeGuerre.createCensus()

returns a census function that will output unique names. It will only output the city name once, until all cities are exhausted.

Example:

const nomDeGuerre = require('nom-de-guerre');
const census = nomDeGuerre.createCensus();

census(); // -> 'Montreal'
census(); // -> 'Pointe-Claire'

Installation

npm install nom-de-guerre
// or
yarn add nom-de-guerre

License

MIT