enverse
v0.2.3
Published
Environment check utilities for isomorphic(universal) js apps
Downloads
85
Maintainers
Readme
Everse
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.