0.2.3 • Published 8 years ago

enverse v0.2.3

Weekly downloads
9
License
MIT
Repository
github
Last release
8 years ago

Everse

Build Status Coverage Status Code Climate Codacy Badge npm
dependencies Status devDependencies Status peerDependencies Status

enverse

Environment checks for isomorphic apps

Enverse is super simple library providing some environment checks usefull in isomorphic (universal) application development.
It has tiny footprint and no external dependencies.

Example

import env from `enverse`

if (env.is.browser) {
    // do some browser stuff
} else {
    // do some server stuff
}

Checks

Default everse object exposes is and has properties with following checks. All bellow keys return Boolean values.

  • is.browser
  • is.server
  • has.document
  • has.navigator
  • has.localStorage
  • has.sessionStorage
  • has.global
  • has.process

What next?

There is no futher plan of action if you however have an idea please feel free to submit an issue.

Enjoy!