No reviews yetBe the first to leave a review for Boomm
Viktor.comAn AI coworker that actually does the work
Promoted
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.
Report
Hunter
@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.
Report
@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!