Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rincedd/const-loader
Webpack const loader
https://github.com/rincedd/const-loader
webpack webpack-loader webpack2
Last synced: 3 days ago
JSON representation
Webpack const loader
- Host: GitHub
- URL: https://github.com/rincedd/const-loader
- Owner: rincedd
- License: mit
- Created: 2017-03-09T16:26:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-03-11T10:58:13.000Z (over 7 years ago)
- Last Synced: 2024-11-08T07:42:22.130Z (8 days ago)
- Topics: webpack, webpack-loader, webpack2
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# const-loader
A webpack loader that ignores the requested resource contents and returns a const value instead.[![Build Status](https://travis-ci.org/rincedd/const-loader.svg?branch=master)](https://travis-ci.org/rincedd/const-loader)
## Usage
```js
const thing = require('const-loader?val=hello!some-module');console.log(thing); // => 'hello'
```