user-identifier
v0.0.3
Published
User identifier nuxt-module for all O&O properties
Readme
User Identifier Module for Nuxt.js
[![npm version][npm-version-src]][npm-version-href] [![npm downloads][npm-downloads-src]][npm-downloads-href] [![Circle CI][circle-ci-src]][circle-ci-href] [![Codecov][codecov-src]][codecov-href] [![License][license-src]][license-href]
Nuxt.js module for posting user-identifier and associated data to Blavity database
Setup
- Add
user-identifierdependency to your project
yarn add user-identifier # or npm install user-identifier- Add
user-identifierto themodulessection ofnuxt.config.js
{
modules: [
// Simple usage
'user-identifier',
// With options
['user-identifier', { /* module options */ }]
],
// Options
track: {
endpoint: '<add endpoint here>'
}
}Development
- Clone this repository
- Install dependencies using
yarn installornpm install - Start development server using
npm run dev
