
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
native-raw-loader
Advanced tools
A loader for webpack that allows importing files as a String or native
DEPREACTED for v5: please consider migrating to asset modules.
A loader for webpack that allows importing files as a String or as native files.
To begin, you'll need to install native-raw-loader:
$ npm install native-raw-loader --save-dev
Then add the loader to your webpack config. For example:
file.js
import txt from './file.txt';
webpack.config.js
// webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.txt$/i,
use: 'native-raw-loader',
},
],
},
};
And run webpack via your preferred method.
| Name | Type | Default | Description |
|---|---|---|---|
esModule | {Boolean} | true | Uses ES modules syntax |
native | {Boolean} | true | Uses native import |
esModuleType: Boolean
Default: true
By default, native-raw-loader generates JS modules that use the ES modules syntax.
There are some cases in which using ES modules is beneficial, like in the case of module concatenation and tree shaking.
You can enable a CommonJS module syntax using:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.txt$/i,
use: [
{
loader: 'native-raw-loader',
options: {
esModule: false,
},
},
],
},
],
},
};
nativeType: Boolean
Default: true
By default, native-raw-loader generates JS modules that use the ES modules syntax.
There are some cases in which using native import is beneficial, so you can import a native fill with out any changes.
You can enable this using:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.txt$/i,
use: [
{
loader: 'native-raw-loader',
options: {
native: true,
},
},
],
},
],
},
};
import txt from 'native-raw-loader!./file.txt';
Beware, if you already define loader(s) for extension(s) in webpack.config.js you should use:
import css from '!!native-raw-loader!./file.txt'; // Adding `!!` to a request will disable all loaders specified in the configuration
Please take a moment to read our contributing guidelines if you haven't yet done so.
FAQs
A loader for webpack that allows importing files as a String or native
The npm package native-raw-loader receives a total of 0 weekly downloads. As such, native-raw-loader popularity was classified as not popular.
We found that native-raw-loader 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.