to html?
I cloned this repo from github and it uses npm and other npm dependences for the project.
I want to add particules.js to one part of the site.
But now i don't know how to import npm modules to use them at the html page
Using script tag to add the required file from the src folders returns an error from webpack not been able to complie and understand the script
I want to figure out how to import node modules that are already installed and use them on my html
Sorry for my bad enjoy, thanks.
The way to add scripts to HTML is with the <script> tag. You will need to somehow make the module available through a webserver. As the project already uses npm, I guess it also uses some kind of bundler, like webpack. If so, you just have to npm install your extra module, modify the code to use it, and build the project
You need to find the particle.js file to add ti your we site in other ways than npm. Npm packages are packaged for nodejs and particle.js has another release with only the js file to include in an html website and to configure
Обсуждают сегодня