JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q40439F
  • License MIT

Login Multi Factor Authentication (MFA) uses Passportjs' passport_totp authentication stategy to provide TOTP(Time-based One-time Password Algorithm) for Express based periodicjs applications.

Package Exports

  • periodicjs.ext.passport_mfa

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (periodicjs.ext.passport_mfa) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

periodicjs.ext.passport_mfa Coverage Status Build Status

A simple extension.

API Documentation

Usage

CLI TASK

You can preform a task via CLI

$ cd path/to/application/root
### Using the CLI
$ periodicjs ext periodicjs.ext.passport_mfa hello  
### Calling Manually
$ node index.js --cli --command --ext --name=periodicjs.ext.passport_mfa --task=hello 

Configuration

You can configure periodicjs.ext.passport_mfa

Default Configuration

{
  settings: {
    defaults: true,
  },
  databases: {
  },
};

Installation

Installing the Extension

Install like any other extension, run npm run install periodicjs.ext.passport_mfa from your periodic application root directory and then normally you would run periodicjs addExtension periodicjs.ext.passport_mfa, but this extension does this in the post install npm script.

$ cd path/to/application/root
$ npm run install periodicjs.ext.passport_mfa
$ periodicjs addExtension periodicjs.ext.passport_mfa //this extension does this in the post install script

Uninstalling the Extension

Run npm run uninstall periodicjs.ext.passport_mfa from your periodic application root directory and then normally you would run periodicjs removeExtension periodicjs.ext.passport_mfa but this extension handles this in the npm post uninstall script.

$ cd path/to/application/root
$ npm run uninstall periodicjs.ext.passport_mfa
$ periodicjs removeExtension periodicjs.ext.passport_mfa // this is handled in the npm postinstall script

Testing

Make sure you have grunt installed

$ npm install -g grunt-cli

Then run grunt test or npm test

$ grunt test && grunt coveralls #or locally $ npm test

For generating documentation

$ grunt doc
$ jsdoc2md commands/**/*.js config/**/*.js controllers/**/*.js  transforms/**/*.js utilities/**/*.js index.js > doc/api.md

Notes