Can I use CommonJS modules in a Chrome extensions?

Thanks Marco

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Since CommonJS implementations are server side, the only way to use that as a Chrome Extension is through NPAPI bindings. If your looking for alternate frameworks, look for ones that live in the client side.

Hope that helped!

link|improve this answer
CommonJS isn't just for server-side code. For example: addons.mozilla.org/en-US/developers/docs/sdk/1.2/dev-guide/… – pioto Oct 25 '11 at 15:18
feedback

You can use CommonJS's AMD module system as implemented by RequireJS quite nicely.

link|improve this answer
1  
Links for your convenience: AMD, RequireJS – thisgeek Jun 12 '11 at 3:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.