Boomm

Boomm

Easily paste code and import it as a module in NPM projects

1 follower

We decided to create a pastebin-like platform where you can easily paste code and import it as a module in NPM projects.
Boomm gallery image
Boomm gallery image
Boomm gallery image
Free
Launch tags:Side Project
Launch Team
OS Ninja
OS Ninja
Explore and Learn Open Source using AI
Promoted

What do you think? …

Robert Hopman
Some ongoing discussion on reddit as well: https://www.reddit.com/r/typescr...
Ravi Lingineni
This is great! I have this one file called s3Helper that sits across repos. I just copy paste it over when I need it. It really should be a package, but I don’t want to make a repo and give it its own package.json and stuff. This seems like a perfect fit for my script. Only problem is that I use typescript. If this had typescript support, I’d happily paste my class over.
Robert Hopman
@raviteja_lingineni You can always convert your TS code to JS but you'll lose the type definitions of the code. As a TS user myself, I think that's unacceptable. We have yet to introduce TS support, but haven't looked at how to implement it SAFELY. We don't feel comfortable compiling stranger's code on our server.
Ravi Lingineni
@roberthopman - that's fair. It might be possible to set the typings as part of the `typings` parameter in the package.json, and they should come over. So an extra file to host might be index.d.ts. The compiling concern is valid. If you ever get to it, lmk, would love to try!