Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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'
```