JavaScript Air Episode 032: Publishing JavaScript Packages

preview_player
Показать описание
Doing open source involves a lot more than just coding up the tool/library. We're going to talk about the challenge of actively publishing an open source package on npm and some of the tools that have been developed to automate this process. Our guests have each developed some amazing tools, so you're in for a really interesting show!
Рекомендации по теме
Комментарии
Автор

NPM slows down with many-moduled projects because it's checking the cache against the server and getting many *many* 304 responses. Once you have installed, it's not the downloading that hurts, but the multiple roundtrips that end in a 304. I think if NPM resolved your dependency tree server side, there would be huge potential for speedup.

JamesTalmageR