<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://entorb.net//wiki/index.php?action=history&amp;feed=atom&amp;title=Npm</id>
	<title>Npm - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://entorb.net//wiki/index.php?action=history&amp;feed=atom&amp;title=Npm"/>
	<link rel="alternate" type="text/html" href="https://entorb.net//wiki/index.php?title=Npm&amp;action=history"/>
	<updated>2026-05-06T10:25:17Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://entorb.net//wiki/index.php?title=Npm&amp;diff=5364&amp;oldid=prev</id>
		<title>Torben: /* Globally Installed packages */</title>
		<link rel="alternate" type="text/html" href="https://entorb.net//wiki/index.php?title=Npm&amp;diff=5364&amp;oldid=prev"/>
		<updated>2025-10-25T05:29:03Z</updated>

		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Globally Installed packages&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==pnpm==&lt;br /&gt;
 # better and faster than npm&lt;br /&gt;
 brew install pnpm&lt;br /&gt;
 # or &lt;br /&gt;
 npm install -g pnpm&lt;br /&gt;
 # update single package&lt;br /&gt;
 pnpm up vite&lt;br /&gt;
 # update all dependencies&lt;br /&gt;
 pnpm up&lt;br /&gt;
&lt;br /&gt;
==npm Packagemanager for Javascript Packages==&lt;br /&gt;
===Globally Installed packages===&lt;br /&gt;
 brew install node&lt;br /&gt;
 &lt;br /&gt;
 npm install -g prettier eslint cspell&lt;br /&gt;
 # list global packages&lt;br /&gt;
 npm ls -g&lt;br /&gt;
 # update all&lt;br /&gt;
 npm update -g&lt;br /&gt;
&lt;br /&gt;
===Install a package===&lt;br /&gt;
 # install as main package&lt;br /&gt;
 npm install --save vue&lt;br /&gt;
 # install as dev package&lt;br /&gt;
 npm install --save-dev cypress&lt;br /&gt;
&lt;br /&gt;
===Update a package===&lt;br /&gt;
 npm update cypress&lt;br /&gt;
force update&lt;br /&gt;
 npm remove cypress&lt;br /&gt;
 npm install --save-dev cypress&lt;br /&gt;
&lt;br /&gt;
alternative: npm-check-updates&lt;br /&gt;
 npm i -g npm-check-updates&lt;br /&gt;
 ncu -u cypress&lt;br /&gt;
 npm install&lt;br /&gt;
 # or update all packages&lt;br /&gt;
 ncu -u&lt;br /&gt;
 npm install&lt;br /&gt;
&lt;br /&gt;
===Windows Error about Execution_Policies===&lt;br /&gt;
 npm.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies&lt;br /&gt;
&lt;br /&gt;
open Admin PowerShell and run&lt;br /&gt;
 Set-ExecutionPolicy RemoteSigned&lt;/div&gt;</summary>
		<author><name>Torben</name></author>
	</entry>
</feed>