How to user a npm package or node module without installing npm or node js in computer

how to user or import a node model or npm package to mt html project without installing in npm or node module in my system

npm install pkgname only installs to your local project, not your system.

If you just want to use a <script src=...> tag, you can find almost any package that’s on npm at https://unpkg.com/. Not recommended for serious projects.