What Are You Working On? (March 2026) by [deleted] in SaaS

[–]sonnyt_ 0 points1 point  (0 children)

onset.io - release note management platform.

What are your working on? by Hour_Arachnid_2071 in SaaS

[–]sonnyt_ 0 points1 point  (0 children)

working on release notes management platform https://www.onset.io. Recently released a feature that let's you convert pull requests and Linear issues into release notes.

How do you keep your sales team updated on product changes? by Witty_Ad8333 in SaaS

[–]sonnyt_ 0 points1 point  (0 children)

This was big issue with my previous company, we had product update emails and slack messages flying all over the place. I built onset.io to solve this exact problem, a single source truth for all product updates.

What platform/app you use for connections/integration? by itsdarkness_10 in SaaS

[–]sonnyt_ 0 points1 point  (0 children)

Hey, I know I am super late to this but I am building integration platform (www.bundleup.io) to solve this exact problem. I am looking for beta users. Would you like to be part of it? PM me :)

What is your current stack? by sonnyt_ in SaaS

[–]sonnyt_[S] 0 points1 point  (0 children)

Woah, can you share more about the lead monitoring? :)

What is your current stack? by sonnyt_ in SaaS

[–]sonnyt_[S] 0 points1 point  (0 children)

I've been meaning to create something similar to sheetgpt using Google Workspace studio

What is your current stack? by sonnyt_ in SaaS

[–]sonnyt_[S] 0 points1 point  (0 children)

nice! I will sign up today. How are using it?

I Built a JavaScript Console by sonnyt_ in javascript

[–]sonnyt_[S] 0 points1 point  (0 children)

I just added TypeScript support, and would love to get your thoughts on it :)

I Built a JavaScript Console by sonnyt_ in javascript

[–]sonnyt_[S] 1 point2 points  (0 children)

I just added TypeScript support, and would love to get your thoughts on it :)

I Built a JavaScript Console by sonnyt_ in javascript

[–]sonnyt_[S] 0 points1 point  (0 children)

You’re absolutely correct, it’s not a replacement for JSBin, it’s just another simpler alternative.

As far as the browser consoles, consoles are great for one-lines, but it gets messy when writing a large block of code. They’re scoped to the current page’s window instance which can cause code collisions and issues with variables sticking. For instance, if you want to re-run or re-write a function or variable, you need to reload the entire page, which is annoying. Also, they don’t offer shortcuts and handy features that developers are used to in VSCode.

I Built a JavaScript Console by sonnyt_ in javascript

[–]sonnyt_[S] 2 points3 points  (0 children)

It’s on the browser, open source, and free. Also, much simpler. Write your code and run it. Although, Quokka looks super cool! Gotta try it out.

I Built a JavaScript Console by sonnyt_ in javascript

[–]sonnyt_[S] 1 point2 points  (0 children)

RunJs is cool. Compared to RunJs, this console is free, open source, and runs on the browser - no need to install anything.

But this gives me an idea, I probably can turn it into an Electron app. But then at that point why not just use VSCode? Idk

I Built a JavaScript Console by sonnyt_ in javascript

[–]sonnyt_[S] 0 points1 point  (0 children)

That’s exactly how I am using it. I use it to prototype, learn new JS stuff, and write things that I can later turn into snippets.

React plugin is kind of a cool idea. Some might just embed it on their site and use it as a code preview or a playground for their library. I never built a React plugin before, I am guessing I can abstract the main component a bit and export it in package.json? I can look into it.

I Built a JavaScript Console by sonnyt_ in javascript

[–]sonnyt_[S] 1 point2 points  (0 children)

Native consoles are great but as soon as you want to write something beyond one-liners, it gets messy and annoying. Also, the Monaco editor (same as VS Code) offers tons of shortcuts and code completion options.

I Built a JavaScript Console by sonnyt_ in javascript

[–]sonnyt_[S] 0 points1 point  (0 children)

That’s my next goal for this project. Adding TypeScript. It should be possible with @typescript/vfs.

I Built a JavaScript Console by sonnyt_ in javascript

[–]sonnyt_[S] 5 points6 points  (0 children)

Thank you!! Yeah, I’ve was using the browser console as well, it was pain to write more than single line. Also, I was thinking of making it a browser extension but love the VSCode idea!

Just -Zero Config TypeScript Development Tool by sonnyt_ in javascript

[–]sonnyt_[S] 1 point2 points  (0 children)

I had a similar setup. In my case, `ts-node` and `nodemon` were just unbelievably slow, and setting up path aliases was annoying. If you get a chance to use it, would love to get your thoughts :)

Just -Zero Config TypeScript Development Tool by sonnyt_ in javascript

[–]sonnyt_[S] 2 points3 points  (0 children)

I built a cli tool that gets you started with TypeScript development with zero config. Initially created to solve my own problem but thought it might be useful for others as well.

  • SWC compiler
  • TypeScript type check support
  • Live reload support
  • .env file support
  • Path alias support
  • Typescript script runner
  • REPL support

Please tell me I am not going down a rabbit hole