Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
ember-runtime-config
Advanced tools
Configure an Ember application with server-side environment variables
Normally, if you want to configure your Ember application on a per-environment basis, you can access the environment at build-time in config/environment.js
and use that in your application.
But what happens if you want to build your application once, but still configure the application based on the environment?
This addon allows you to do just that!
ember install ember-runtime-config
Then, edit the configuration in config/ember-runtime-config.js
to define the variables you want access to in your application.
To access the variables from the client, you can import the environment like so:
import env from 'ember-runtime-config';
In development, the environment will be exposed to your Ember application automatically by hooking into the development server.
In a production environment, it's assumed that you're using an Express-like Node server for your assets. You can import the middleware and add it to your own server.
const app = require('express')();
const emberRuntimeConfig = require('ember-runtime-config/middleware');
app.use(emberRuntimeConfig('/path/to/ember/app/root'));
app.listen(3000, () => {
console.log('Server running');
});
git clone <repository-url>
cd ember-runtime-config
yarn install
yarn lint:js
yarn lint:js --fix
ember test
– Runs the test suite on the current Ember versionember test --server
– Runs the test suite in "watch mode"ember try:each
– Runs the test suite against multiple Ember versionsember serve
For more information on using ember-cli, visit https://ember-cli.com/.
This project is licensed under the MIT License.
FAQs
Configure an Ember application with server-side environment variables
The npm package ember-runtime-config receives a total of 7 weekly downloads. As such, ember-runtime-config popularity was classified as not popular.
We found that ember-runtime-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.