Most js module pattern related news are at:
More js module pattern related news:
CommonJS require(..) API is a poor fit for client side JS lucassmith.name 25 Nov 2009 | 07:54 pm
This post is in response to David Flanagan's client side JS implementation of CommonJS's module pattern/API. There are several performance considerations with script/module/dependency loading. scrip...
Testing node.js modules with Travis CI debuggable.com 18 Nov 2011 | 11:17 pm
You have written a node.js module lately? It has a test suite? Awesome! Time to get yourself a nerd badge of honor: But hang on nerdy warrior, this precious award has to be earned. So go ahead and ch...
hone.js minify html css and javascript soundstep.com 16 Jun 2012 | 01:16 am
I had fun making a node.js module and a npm package. So here is hone.js, it is using r.js and other tools to optimize and minify html, css and javascript files. More info there: https://github.com/...
Backbone.js Style / Patterns hackingon.net 7 Jun 2012 | 02:33 pm
Naming Rules Use PascalCase for constructors, namespaces and modules: Prefix private properties with _ This is a convention to compensate for JavaScript's lack of private properties on objects. Bei...
hone.js minify html css and javascript soundstep.com 15 Jun 2012 | 10:16 pm
I had fun making a node.js module and a npm package. So here is hone.js, it is using r.js and other tools to optimize and minify html, css and javascript files. More info there: https://github.com/sou...
newClass - a class like wrapper around prototypal OOP bitstorm.org 24 Mar 2013 | 02:11 pm
I’ve done some JavaScript programming with both prototypal inheritance and the module pattern, both powerful concepts. What I didn’t like about prototypal inheritance is the loosely coupled...
The problem with combining UMD (Require.js) modules and non-UMD modules haykranen.nl 10 May 2013 | 02:46 pm
Here’s an interesting problem i recently encountered. I’ve got a site using Require.js. I’m loading an external library that doesn’t use Require. This library loads some external dependencies, one of...
Code Execution via YAML in JS-YAML Node.js Module nealpoole.com 24 Jun 2013 | 02:30 am
Summary The JS-YAML module for Node.js contained a code execution vulnerability prior to version 2.0.5. The maintainers of JS-YAML have patched this vulnerability and, beginning in version 2.1.0, hav...
[Node.JS] Modules and npm theeye.pe.kr 23 Jun 2013 | 03:57 pm
Node.js modules Node의 모듈 시스템에 대해 이야기 해보겠습니다. 모듈은 당신의 어플리케이션의 다른 자바스크립트 파일들을 인클루드 할 수 있게 해줍니다. 사실 Node의 대부분의 핵심 기능들은 기존에 자바스크립트로 작성된 모듈을 사용하여 구현됩니다. 이말을 즉 Github에 올라와있는 핵심 라이브러리들의 소스코드를 확인하는것이 가능함을 뜻합...
XSS Filter Bypass in validator Node.js Module nealpoole.com 4 Jul 2013 | 11:30 pm
Summary The validator module for Node.js contains functionality meant to filter potential XSS attacks (a filter called xss). In looking at the implementation I discovered several bypasses for this fi...