Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Cross platform environment variables with process.env, window.name, location.hash and localStorage fallbacks

License

NotificationsYou must be signed in to change notification settings

3rd-Eden/env-variable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A cross platformenv-variable for browsers and node. Of course, browsersdoesn't have environment variables but we do have hashtags and localStoragewhich we will use as fallback.

hashtags

This is a really easy way of adding some trigger some environment variables thatyou might use for debugging. We assume that the hashtag (#) containsa query string who's key is the name and the value.. the value.

localStorage

If you want more persisting env variables you can set a query string of envvariables in localStorage. It will attempt to use theenv variable.

Installation

This module is written for node and browserify and can be installed using npm:

npm install --save env-variable

Usage

This module exposes a node /module.exports interface.

varenv=require('env-variable')();

As you can see from the example above we execute the required module. You canalternately store it but I don't assume this a common pattern. When you executethe function it returns an object with all the env variables.

When you execute the function you can alternately pass it an object which willbe seen as the default env variables and all fallbacks andprocess.env will bemerged in to this object.

varenv=require('env-variable')({foo:'bar',NODE_ENV:'production'});

Oh, inenv-variable we don't really care how you write your env variables. Weautomatically add an extra lower case version of the variables so you can accesseverything in one consistent way.

And that's basically everything you need to know.random high fives.

License

MIT

About

Cross platform environment variables with process.env, window.name, location.hash and localStorage fallbacks

Resources

License

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp