🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

angular-write-constants

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-write-constants

Create a JS config for angular using constants

1.0.2
latest
Source
npm
Version published
Weekly downloads
2
-75%
Maintainers
1
Weekly downloads
 
Created
Source

angular-write-constants

NPM Version NPM Downloads Build Status Coverage Status Dependency Status devDependency Status

Utility for creating a JS config for angular using constants, using a list of input files.

Install via npm install angular-write-constants.

CLI usage

angular-write-constants --module moduleName primary.json secondary.json ... > config.js

Example contents:

primary.json:

{
  "answerToEverything": 42,
  "overriddenValue": "someOldValue"
}

secondary.json:

{
  "overriddenValue": "someNewValue",
  "apiEndpoint": "https://google.com/"
}

Resulting config.js:

angular.module("moduleName")
  .constant("ANSWER_TO_EVERYTHING", 42)
  .constant("OVERRIDDEN_VALUE", "someNewValue")
  .constant("API_ENDPOINT", "https://google.com/");

License

MIT

Keywords

angular

FAQs

Package last updated on 28 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts