Uncaught ReferenceError: process is not defined
9 August 2022 | Category: JavaScript | Comments (0)
The error Uncaught ReferenceError: process is not defined may happen when the code tries to get access to the process
object that provides information[……]
Error: Package subpath ‘./package.json’ is not defined by “exports”
21 October 2021 | Category: JavaScript | Comments (0)
Got Error: Package subpath './package.json' is not defined by "exports"
issue? You may take following steps (one of them):
- Ask npm package author[……]
Overestimating some of today’s programming features
21 April 2018 | Category: JavaScript | Comments (0)
I see a some people are fascinated by ES6/TypeScript/React (and the like)/Babel/Webpack features. However, not all the gold that shines. Let me explor[……]
Why I switched to only NodeJS + npm and stopped using Grunt
10 December 2015 | Category: JavaScript, Tools | Comments (13)
I can’t imagine building a modern JavaScript application or website without using any kind of build system. Recently I’ve used Grunt in several projec[……]
What You Should Know When Interviewing For A JavaScript Job With Eric Elliott
7 December 2015 | Category: General, JavaScript | Comments (0)
Really worth it to listen, especially for those people who’s interviewing other people for JavaScript developer position.[……]
setup-defender.ps1 is not digitally signed while using ember-cli-windows-addon
28 June 2015 | Category: JavaScript, Tools | Comments (0)
So, I started playing with EmberJS framework. However, build times on Windows are longer than on Linux or Mac OS X. Much of that penalty is not becaus[……]
PhantomJS and source code instead of page
3 February 2015 | Category: Browsers, JavaScript | Comments (0)
Running the code in PhantomJS might bring source code instead of page (the screenshot from that is generated using page.render
);
The reason of[……]
PhantomJS, resources and relative path
28 January 2015 | Category: JavaScript | Comments (2)
PhantomJS (at least version 1.9.8) is not loading resources when you want to use relative path. However, after some research and experimenting here wh[……]
How do I valid my code on Windows before I commit to Git repository?
5 October 2014 | Category: JavaScript | Comments (0)
Introduction
Like many other version control systems, Git has a way to execute custom scripts when certain important actions occur. One of the good[……]
Events – why something.changed instead of something.on(“changed”, ….
25 July 2014 | Category: JavaScript | Comments (0)
Whenever I was using custom events there were:
something.on("changed", function myonchange() { do_something_here });
However, now I start[……]
keep looking »