Skip to content
Advertisement

can javascript be inline with webpack?

I need to import a library to my project, the library should is a javascript file, which need to be inlined to html.

for example:

library code:

JavaScript

I need to make this code inline in html.

html:

JavaScript

can I implement this with webpack? I find script-loader, but it run the script, not make it inline.

Advertisement

Answer

At last, we solve this problem by combining webpack and gulp. (with two plugins: gulp-html-replace and gulp-inline-source.)

html:

JavaScript

gulpfile:

JavaScript

In package.json, define a task, which will compile the project using webpack and then inject the js file as inline.

JavaScript

When you want to release your project, just run npm run build


update on July.20 2018

we have made a webpack plugin to solve this issue.

https://github.com/QuellingBlade/html-webpack-inline-plugin

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement