Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@f0rr0/webpack-env-ts
Advanced tools
Extendable environment config with webpack with Typescript support
Use custom environment configurations in front-end projects with type safety and hints.
Install package
npm i -S @f0rr0/webpack-env-ts
Add a update-config
step
{
"scripts" : {
"update-config": "node-config-ts"
}
}
Create a config
directory inside your project's root folder and add a default.json
file. A typical folder structure looks as follows —
root/
└── config/
└── default.json
default.json
should contain your application's configuration
Create typings
npm run update-config
A new Config.d.ts
will be generated automatically. This file could be ignored from git as it gets automatically generated based on the structure of default.json
Add webpack plugin
// webpack.config.js
const webpack = require('webpack');
+ const WebpackEnvTsPlugin = require('@f0rr0/webpack-env-ts/plugin');
module.exports = {
...
plugins: [
...
+ new WebpackEnvTsPlugin({ verbose: true })
],
devServer: {
- port: 8000,
+ /* reference variables from your configuration! */
+ port: WebpackEnvTsPlugin.Config.PORT
}
}
// app.js
import Config from '@f0rr0/webpack-env-ts'
Config.PORT // 8000
Refer to node-config-ts
FAQs
Extendable environment config with webpack with Typescript support
The npm package @f0rr0/webpack-env-ts receives a total of 0 weekly downloads. As such, @f0rr0/webpack-env-ts popularity was classified as not popular.
We found that @f0rr0/webpack-env-ts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.