Check And Upgrade All Node Packages
April 21st, 2017 0 CommentsA nice way to check and upgrade all of the packages of your project quickly:
npm i -g npm-check-updates
npm-check-updates -u
npm install
A nice way to check and upgrade all of the packages of your project quickly:
npm i -g npm-check-updates
npm-check-updates -u
npm install
Look at your editor. Now back at mine. Now back at yours. Now back to mine. Sadly your editor is not like mine. But if you stopped using noob-scented editor, and switched to Sublime Text 2, your editor could look like mine.
Seriously, although Eclipse is a great development editor, if you’re looking for a lightweight, easy to use, the most comprehensive simple editor, look no further than Sublime Text 2 (3 currently in beta).
You can download Sublime Text 2 Here!
You’re Welcome!
Eclipse – Performance Improvement
1. Disable validators and startup option
– For validations: on eclipse menu Windows -> Preferences -> Validation, select only validation you need.
– For startup action: on eclipse menu Windows -> Preferences -> General -> Startup, and uncheck the options you don’t need.
2. Modify eclipse.ini
-vmargs
-server
-Dosgi.requiredJavaVersion=1.5
-Xmn128m
-Xms1024m
-Xmx1024m
-Xss2m
-XX:PermSize=128m
-XX:MaxPermSize=128m
-XX:+UseParallelGC
3. Turn off spelling check
– You can switch off the plug-in by going to Window -> Preferences -> General -> Editors -> Text Editors -> Spelling, and unchecking the box title ‘Enable spell checking’.