Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 891 Bytes

README.md

File metadata and controls

43 lines (26 loc) · 891 Bytes

ARRISPWOD - Arris Password Of Day

Build Status codecov

Javascript library for generate password of the day for Arris routers.

Install

npm install arrispwod

# Or with yarn
yarn add arrispwod

Usage

NodeJS

// CommonJS
const genPassOfDay = require('arrispwod');

// Or with ESNext
import genPassOfDay from 'arrispwod';


const passOfDay = getPassOfDay(new Date());
console.log(passOfDay);

Browser

Use UMD package from: https://unpkg.com/arrispwod

API

See API here

Related