Home > Software engineering >  Can you include a html and css in an npm package?
Can you include a html and css in an npm package?

Time:02-16

I’ve looked everywhere for this and cannot find a definitive answer. I’ve just started on the node package manager. If publishing a package for the community can it consist of html and css or is it purely for packages written in JavaScript?

CodePudding user response:

Yes. For example, Bootstrap has an NPM package with their CSS in it.

https://www.npmjs.com/package/bootstrap

  • Related