https://github.com/constructor-io/constructorio-identity
A JavaScript module for managing identity & session (client)
https://github.com/constructor-io/constructorio-identity
constructorio-integrations
Last synced: about 2 months ago
JSON representation
A JavaScript module for managing identity & session (client)
- Host: GitHub
- URL: https://github.com/constructor-io/constructorio-identity
- Owner: Constructor-io
- License: mit
- Created: 2018-02-07T23:45:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-02-18T01:54:47.000Z (4 months ago)
- Last Synced: 2025-03-09T05:39:20.923Z (3 months ago)
- Topics: constructorio-integrations
- Language: JavaScript
- Homepage:
- Size: 991 KB
- Stars: 0
- Watchers: 30
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Installing
Make sure that you have node greater than `0.10.38` and run the following command
```bash
npm install
```# Linting
Run the following command
```bash
npm run lint
```>Linting uses [eslint](https://eslint.org/) with the [airbnb](https://github.com/airbnb/javascript) style configuration. To set up automatic linting on file save, consult the [eslint integration guide](https://eslint.org/docs/user-guide/integrations). You may need to run the following commands for the linter to work in your IDE on file save
# Tests
Run the following command for [Mocha](https://mochajs.org/) tests with and without [jsDOM](https://github.com/tmpvar/jsdom)
```bash
npm run test
```# Test Coverage Reports
Run the following command and visit [http://localhost:8080]()
```bash
npm run coverage
```