modularize, publish to npm
See original GitHub issueIn the main example there are 17 script tags: https://github.com/lo-th/Oimo.js/blob/master/index.html#L16-L32
That’s not a great way for third parties to consume this library. It’s common practice to generate a umd build so that people using module systems such as commonjs or AMD can require()
this module and people not using any module system will still have their window globals as usual, but with only a single <script>
tag to include.
Once the code has been modularized, you can generate a package.json
file with npm, which ships by node.js by default. Just do:
npm init
And the command will walk you through filling out the right fields. You should point the "main"
field at the singular entry point for this package, which could be a dist build since the internals aren’t modularized yet. A really simple way to do this with what you’ve already got is just to cat
together all the files necessary and then append some exports.FOO=...
statements, at least for commonjs. Once the build works, just publish to npm with:
npm publish
You can test the build with a tool like browserify.
Issue Analytics
- State:
- Created 10 years ago
- Comments:14 (5 by maintainers)
Top GitHub Comments
yea npm version is on way now i know how process like uil
i hope someday Saharan help me for adding creazy function
@lo-th should reconsider this for 2 reasons :
Browserify. Being able to pull the package down through npm, list it as a project dependency (Just as with all my other depencendies) would be an invaluable asset. As already stated, npm is certainly no longer just for server-side packages.
Server-side running. This should also be coupled with a rewrite of some code that makes Oimo depend on canvas to operate. This would be Oimo an absolute knock-out of the park for a lot of projects. I am currently working on a multiplayer browser game, but with server side features, such as collision detection (And other anti-cheat measures).
Obviously, my server has no need to be rendering graphics, but if I could run the same physics on the server that are running on the client, I wouldn’t need to be resorting to a myriad of nasty hacks I’ve implemented in the mean time.
I’m sure myself and some others who are interested could go about building the Oimo code to work in such a manner. Not a lot needs to be changed, but it would make all the difference in the world.