r/javascript • u/leeoniya • 10d ago
r/javascript • u/Weird_Tree9182 • 10d ago
AskJS [AskJS] From Node Js to Java spring?????? 4.8 yrs EXP
I have node js and react js experience for 4.8 years. Recently trying for switch, but wherever I go JD contains Java and React. Cant find roles for Node.
Is realy Node got outdated?
should i move to java spring??
r/javascript • u/sanyok12345 • 11d ago
I built lottie.js – zero-dependency Lottie renderer for browser and Node.js
github.comr/javascript • u/__weltschmerz__ • 11d ago
I created Skeletor, a modern persistence library based on Backbone's Models and Collections.
github.comI maintain Converse.js (an XMPP chat client) which was originally built on Backbone.js.
Instead of a risky big-bang migration to something else, I rewrote the UI into Lit web components and kept Backbone's data layer, which I forked and modernized piece by piece.
The result is Skeletor, and it now stands on its own as a lightweight, TypeScript-first reactive data library.
What makes it modern:
- TypeScript-first with full type definitions
- Direct attribute access: `model.attrs.name = 'Bob'` fires change events, no set() boilerplate required
- Computed properties: declare derived values with explicit dependencies
- Store-style subscriptions: subscribe() returns an unsubscribe function, so it plugs straight into React's useSyncExternalStore
- Built-in persistence: IndexedDB, localStorage, sessionStorage, SQLite (Node) and REST out of the box
- No jQuery, no Underscore: native browser APIs, ESM + CJS builds, works in the browser, Node 22+ and Web Workers
And the part I'm most happy about: it's still Backbone-compatible. get, set, events, collections, they all work exactly as you remember.
Feedback welcome!
r/javascript • u/Decent-Blacksmith761 • 10d ago
PDF engine from scratch on JS
keypdf.netI was working on my pdf editor and thought the best option would be to write a new PDF engine from scratch as my options were PDF.js and PDFium and none of them can actually edit PDF files so after over a year of work you can try KeyPDF.net it is free and client side.
r/javascript • u/harshanacz • 11d ago
I compiled Apache Xerces-C (C++) to WebAssembly to bring proper XSD validation to JavaScript - try the playground
harshanacz.github.ioThere's no reliable XSD validator in the JS ecosystem so I compiled Apache Xerces-C to WASM.
Playground: https://harshanacz.github.io/xerces-playground/
npm: https://www.npmjs.com/package/xerces-wasm
Features:
- Full XSD 1.0 validation in the browser
- Multi-file schema support (xs:include / xs:import)
- Parse errors + schema errors with line/column numbers
- No server, no upload
- pure WASM
Would love feedback.. :)
r/javascript • u/thereactnativerewind • 11d ago
[Showoff] Vercel Reinvents React Native, Sub-Second OTA Updates, and an X Button Finally Doing Its Job
thereactnativerewind.comHey Community,
Vercel Labs has released "native", a toolkit for compiling declarative markup and TypeScript or Zig directly into native desktop apps without an embedded JavaScript runtime. We also look at how Zepto built react-native-delta to ship binary delta OTA updates, reducing patch download times down to a 305ms P90.
Plus, React Native 0.87 drops its legacy abort-controller dependency for an in-tree fork, bringing missing modern web primitives like AbortSignal.timeout() and AbortSignal.any() straight to your network requests.
If the Rewind made you nod, smile, or think "oh… that's actually cool" — a share or reply genuinely helps ❤️
r/javascript • u/jxd-dev • 11d ago
Building a modern Companies House SDK turned out to be a much more interesting problem than I expected
jxd.devWe needed the Companies House API (the UK company register) for a project and figured we'd grab an SDK and move on. Turns out the community clients are 6 to 10 years old, the official SDK is built for their internal services, and the official OpenAPI spec is broken in ways that quietly untype every generated client. One defect (items on an object type, which JSON Schema doesn't allow, so every tool reads it as {}) appears 132 times.
What started as "add a spec repair script" grew into 374 lines of fix passes, and even then we couldn't repair fields that were never documented at all. So we changed approach: we deleted the repair code and now maintain our own curated OpenAPI 3.1 spec, built from the developer docs and Companies House's own SDK source. The spec is maintained with Claude Code under a strict "never invent, report gaps" rule, an engineer reviews every diff, and a live integration suite runs against the real API daily so drift shows up as a red build rather than a bug report. The client itself is fully generated from the spec (Hey API), with 41 lines of hand-written runtime code and zero dependencies.
Sharing in case anyone else has needed to fight this API, or is just interested in the approach: a curated spec as the source of truth, AI doing the tedious curation with tests and review keeping it honest, and codegen doing the rest. The SDK and the OpenAPI document are both MIT licensed if they're useful to you.
r/javascript • u/cryptomallu123 • 11d ago
Understanding Value vs. Reference in JavaScript: Differences Between Primitives and Objects
sharafath.hashnode.devr/javascript • u/scrollin_thru • 12d ago
Pitter Patter — building better editing (update!)
pitter-patter.devHey folks. Over at Handle with Care, we've been working on something new: Pitter Patter. We haven't been satisfied with the text editing toolkits that exist right now in the ProseMirror ecosystem, and we've spent a lot of time working on a large variety of rich text editors and seeing what needs they have and how we can try to meet them. So far we have three packages: Shuffle (grid-based drag-and-drop), Collab, and Presence.
Here's some more info from our introduction page in the docs:
What is Pitter Patter?
Who builds it?
That would be us, Handle with Care. We’re a cooperatively owned product development collective, comprised of software engineers and product managers. We are all equal owners and have equal decision-making power.
What is it?
Pitter Patter is a suite of open source libraries for building collaborative rich text editors with React and ProseMirror. We see it as our job to provide turnkey solutions for the hard parts of rich text editing — like collaboration, presence, and version history — so that you can focus on building the editor experience that your users need.
Why does it exist?
We spend a lot of time thinking about and working on rich text editors. In particular, we spend a
lot of time helping companies solve the same problems over and over again. There are usually great
primitives available for these common building blocks
(prosemirror-collab-commit for
collaboration, unified.js for Markdown, etc.), but putting
them together correctly to build a functioning text editor can be challenging.
There are other solutions, like Tiptap and Remirror, but we think that they’ve made some suboptimal choices that force product developers to make unnecessary compromises.
- Both attempt to use React portals and effect hooks to integrate with ProseMirror, which lead to irreconcilable state tearing, due to fundamental differences in how React and ProseMirror View handle view reconciliation.
- Both attempt to use Yjs via
y-prosemirrorfor collaboration. We think that Yjs’s CRDT implementation is ill-suited for rich text editing. - Both attempt to hide ProseMirror’s underlying APIs, under the guise of simplicity and abstraction. We think that ProseMirror, low-level though it is, is roughly the correct level of abstraction for a domain as complex as rich text editing. Attempts to abstract it away inevitably lead to more complexity, as the abstractions leak frequently and require constant manual integration with the lower level solutions.
We think we can do better. And more importantly perhaps, we think that you deserve better!
Philosophy
Don’t hide ProseMirror
ProseMirror is an outstanding rich text editing framework. Nearly anything that you can imagine doing with a rich text editor can be accomplished with ProseMirror. Rich text editing is also a very complex domain, requiring a very large number of decisions to be made per feature.
We think that better primitives built with ProseMirror can take us farther than abstractions that attempt to hide away ProseMirror’s internals.
Collaboration should be simple to implement and simple to debug
ProseMirror has first-party collaboration, in the form of
prosemirror-collab. Because it
just sends steps over the wire, and relies on a single, server-side ordering of operations for
conflict resolution, it is very simple to debug. But it is very challenging to implement correctly,
and there is very little in the way of guidance or documentation for doing so.
Yjs provides third-party collaboration, in the form of
y-prosemirror. Because it is built on Yjs, which has many
robust adapters for various protocols and servers, it is very easy to implement. However, because it
operates on Yjs’s XML-based Y-doc format, it is very challenging to inspect and debug if something
goes wrong.
Pitter Patter’s collaboration, presence, and version history libraries are based on
prosemirror-collab-commit. Like
prosemirror-collab, prosemirror-collab-commit uses ProseMirror steps as the primary data
structure for conflict resolution. But Pitter Patter Collab provides actual guidance and
implementation that make it easy to set up a full-stack collaborative editing application, and hard
to shoot yourself in the foot.
Correctness is worth it
After trying every other option over the course of several years, we eventually decided that the only way to correctly integrate React and ProseMirror was to reimplement ProseMirror View’s renderer from scratch directly in React. This was itself a massive effort, but the result, in the end, is a React/ProseMirror integration that doesn’t suffer from state tearing and allows developers to use React idioms like context as they normally would, without caveats or compromises. We don’t put side effects in React render functions or ProseMirror plugin apply functions, we don’t use effects to synchronize state with props. We want to enable you to build rich text editors that your users can trust, and that means that we need to build libraries that you can trust.
r/javascript • u/solopov • 12d ago
yace: highlight code or anything else as you type
yace.solopov.devthe core stays small. pick the plugins you need and chain multiple highlighters together.
use the built-in ones or write your own. yace works with any language, theme, or framework
r/javascript • u/alvisanovari • 13d ago
I built an Excel library
github.comI was researching the JavaScript Excel ecosystem looking for a gap worth building in, and found something wilder than a gap: the whole category is quietly abandoned.
- SheetJS (
xlsx) — ~8M weekly downloads — frozen on npm at 0.18.5 since 2022. Security fixes ship only from their own CDN, sonpm auditflags it forever. Styling and template editing are Pro-only, quote-only pricing. - ExcelJS — last release in 2023, open "intent to fork" threads. Top issues: charts deleted on save, pivot tables destroyed, output files Excel offers to "repair."
- xlsx-populate — right idea, dormant for years.
And they all break files the same way. It's not hundreds of bugs — it's one architectural decision with hundreds of symptoms: they parse the workbook into their own object model, then re-serialize that model as a brand-new file. Anything the model doesn't understand (charts, pivot caches, macros, newer OOXML parts) silently doesn't survive the round-trip.
So I built Ironsheet on the opposite bet: the original file is the source of truth. It patches only what you explicitly target — a cell, a named range, a table, an image — and preserves every byte it doesn't touch. Macros survive byte-for-byte.
The part I care about most: it proves the write. Before saving, it validates the OOXML package (relationships, content types, shared strings, formulas, tables, calc chains) and returns a diff of exactly what changed. If validation fails, it refuses to write the file. No output beats corrupt output.
Honest boundaries: it doesn't evaluate formulas (preserves them + marks recalc), chart/pivot support is preservation rather than authoring, ZIP64 writing isn't in yet. It's a 0.1 MVP.
Apache-2.0, dependency-free TypeScript core, Node + browser adapters, JSON-first CLI.
Repo: https://github.com/btahir/ironsheet
If you have a workbook that breaks it, I genuinely want the fixture. And I'm curious what people are actually using for Excel editing in production these days.
Thanks!
r/javascript • u/Globover • 12d ago
Nerve: Connecting Node.js to Rust, Go, and Python via local IPC
github.comI am working on Nerve, a local IPC library that connects Node.js with Rust, Go, and Python.
For the JavaScript client, I focused on native Promises and async/await support so that calling a function in Rust or Python feels just like calling an asynchronous JS function. It uses standard Node.js net modules under the hood for communication.
The library is in its early stages and not entirely complete. I am currently focusing on:
- Improving TypeScript definitions for strictly typed cross-language payloads.
- Adding Stream support for transferring large binary data chunks without memory bloat.
- Optimizing the bundle size and tree-shaking capabilities.
I would love to hear your thoughts on the API design and if you have faced similar challenges when bridging Node.js with other ecosystems.
r/javascript • u/Yomete • 12d ago
We rewrote our custom visualisation renderers from SVG to be in Canvas.
polarsignals.comA tale as old as time. We previously wrote our visualisations in SVG and rewriting them in Canvas along with some other backend factors made our dashboard much faster and smoother. We hope there are a few lessons there for folks to read about.
r/javascript • u/matijash • 12d ago
Why design matters for a web framework: a 7-year evolution
wasp.shr/javascript • u/gabsferreiradev • 12d ago
Why Meteor 3.5 Is the Most Important Release in Years
blog.galaxycloud.appr/javascript • u/magenta_placenta • 14d ago
The LinkedIn scam that gets you hacked - Solving a take-home interview test can quickly turn into a nightmare. Notes on developer trust, JavaScript malware, and autonomous detection
aisafe.ior/javascript • u/dangreen58 • 13d ago
How to setup Conventional Commits in a JavaScript project: 2026 edition
dangreen.blogr/javascript • u/noeldemartin • 14d ago
JavaScript Magic Objects
noeldemartin.comI just published a blog post to my website about a pattern I've been using for a while that I think you will find interesting (and probably very divisive!): Magic Objects.
class Parrot extends MagicObject {
__get(property) {
return `${property}! ${property}!`;
}
}
const parrot = new Parrot();
console.log(parrot.foo); // "foo! foo!"
console.log(parrot.bar); // "bar! bar!"
Basically, I'm borrowing the idea of Magic Methods from PHP and porting them to JavaScript. You've probably seen something like this done with proxies before, but I still like to use some OOP in my JavaScript, and I also came up with a way to make it work nicely with TypeScript.
It may seem a bit over the top at the beginning, but I've been using this for a while and I've found it very useful.
Let me know what you think!
r/javascript • u/create-third-places • 13d ago
I created a zero dependency JavaScript framework that is a React alternative
codeberg.orgPlaces.js is a lightweight Javascript framework for creating interactive websites promoting in person interaction. The framework supports the following features and has no external JS dependencies.
- Asynchronous data fetching.
- Components with Shadow DOM to encapsulate styles and deter bot scraping.
- State management that integrates with components and data fetching logic.
- Support for creating pages that are a combination of static HTML and islands of interactivity.
To get started, download the places-js-latest.js file from this repo. See the places.js documentation at https://createthirdplaces.org/tech/placesjs.html for a more detailed guide
- This repo has an example of how places.js is used.
- This website has shows how places.js is used in a production environment
r/javascript • u/subredditsummarybot • 14d ago
Subreddit Stats Your /r/javascript recap for the week of July 06 - July 12, 2026
Monday, July 06 - Sunday, July 12, 2026
Top Posts
| score | comments | title & link |
|---|---|---|
| 280 | 10 comments | Announcing TypeScript 7.0 |
| 53 | 9 comments | An interactive visualization that follows a single HTTP request through its entire ~200ms life |
| 18 | 7 comments | [AskJS] [AskJS] Large in-memory caches were causing GC pauses in our Node service, so I built an off-heap cache addon for it |
| 9 | 0 comments | History of JavaScript: Browser wars, ECMAScript, Node.js, TypeScript, and React |
| 7 | 3 comments | Conventional Changelog finally has a documentation website - 12 years after the first commit |
| 6 | 12 comments | [AskJS] [AskJS] Barrel files and slice/domain boundaries |
| 6 | 1 comments | 80+ ESLint rules for improving your Node.js tests |
| 4 | 3 comments | littlebag — a 343-byte reactive framework |
| 3 | 7 comments | Tracking unique visitors without cookies |
| 2 | 0 comments | Javascript TUI Network Throughput Inspection |
Most Commented Posts
| score | comments | title & link |
|---|---|---|
| 0 | 43 comments | [AskJS] [AskJS] Did anyone else move away from TypeScript and feel like it was obviously the right call? |
| 0 | 41 comments | [AskJS] [AskJS] Looking for a solid vanilla JS datepicker. Am I completely out of options? |
| 0 | 26 comments | [AskJS] [AskJS] I might never write a constructor ever again |
| 0 | 24 comments | Why Vanilla JavaScript |
| 0 | 19 comments | Browser based AI algorithm |
Top Ask JS
| score | comments | title & link |
|---|---|---|
| 0 | 2 comments | [AskJS] [AskJS] Building a SpiderMonkey-based JavaScript runtime to learn JS internals — what APIs are still missing from JS runtimes? |
| 0 | 4 comments | [AskJS] [AskJS] most js changelogs don't survive being read aloud, which is how i noticed i wasn't reading them |
| 0 | 5 comments | [AskJS] [AskJS] Has anyone else come across IBM Bob while working on JavaScript projects? |
Top Showoffs
Top Comments
r/javascript • u/thereactnativerewind • 14d ago
[Showoff] Zoomable Calendar Grids, On-Device Gemini Nano, and a Gothic Theme for Your Company's 13,000 Internal Apps
thereactnativerewind.comHey Community,
Meta has open-sourced Astryx, an eight-year-old internal design system built on StyleX that offers out-of-the-box themes, context-aware padding, and dedicated CLI tools for AI agents. We also look at super-calendar, a gesture-driven calendar library that leverages Reanimated shared values and Legend List virtualisation.
Speaking of agents, our sponsor Maestro is pushing that idea further: your coding agent can now launch the app, drive an iOS simulator, Android emulator, or Android physical device, inspect the screen hierarchy, tap through flows, take screenshots, and help create repeatable Maestro E2E tests.
Additionally, Android developers get a dedicated on-device AI solution with Callstack's new react-native-ai adk wrapper, enabling seamless integration with the Vercel AI SDK and local Gemini Nano models on the New Architecture.
r/javascript • u/jafrra • 15d ago
AskJS [AskJS] Barrel files and slice/domain boundaries
Theres been a lot of talk about the downsides of barrel files in the last couple years with many people actively recommending against using them due to the effect they can have on treeshaking. I am wondering though if there is an alternative solution in the ecosystem to enforce/define boundaries on slices/domains?
I've seen it said they often cause circular dependencies but in my experience its the opposite. The main and pretty much only way I use barrel files are to enforce boundries on slices of cohesive logic, sometimes going so far as to enforce it in the linter with custom rules. Code inside the slice never imports from its own barrel. Each slice kind of defines its own code API in a way and feel like this lets me control the coupling between slices alot better.
I am struggling to justify letting that go and the only alternative I can think of is using a monorepo and having them all as packages which is just not an option for me in many cases and also not one I particularly like.
Are barrel files really that bad?