I would be more than happy to admit those cases have been as successful as jQuery, but in reality I could separately discuss about each of them and why they don't quite fit the case. But since this is Echo JS let's limit about JS stuff.
Backbone has never got nearly to be a "major" library, nothing like jQuery, or Angular, or React. It had some traction back in 2012 or something, but has never been a global success, Ashkenas notwithstanding (his work with CoffeeScript and Underscore didn't go unnoticed - speaking of which, you could've mentioned Underscore indeed).
Node.js struggled at first. A lot. It was more of a curiosity than a real contender of classic LAMP stacks. Even now, a lot of "heavy" core business logic is done in Java or C#, while Node isn't even considered for the task. Because for those languages there are a lot of libraries and frameworks that got the contribution of behemoths like Sun, Oracle, IBM, Microsoft, Google... "Serious" companies that anyway granted serious commitments to the ecosystem.
It hasn't really happened for Node, not yet, even though such companies are investing quite a bit in it now. But it happened thanks to the major reorganization that happened in the community after the io.js schism, which eventually led to a solid board with a consistent governance, LTS versions, update plans, roadmaps and so on. Now this is something that "serious" companies could rely on. But it's still quite novel, and in fact Node hasn't really replaced LAMP stacks yet... only in those parts that are somewhat considered "replaceable".
And express... is in that position because it has no real contenders, really. Alternatives like Hapi, Koa... aren't really different and they're not backed by big companies either. And unless something completely new comes into the field, this isn't going to change, because... express is now an IBM thing, since Big Blue aquired StrongLoop a while ago.
Meanwhile, frameworks from big companies continue to blow away competition. Like Bootstrap dwarves Foundation, or like Jest is quickly demolishing the lead of the classic Mocha-Chai-Sinon stack for testing.
The morale is always the same: if you want your project to survive against similar from big companies, you need a *really solid* community around it first.
IMO, one of the main reasons companies are reluctant to use Vue is because there's just one man behind it, Evan You. And that's not actually correct as there's an ever-growing community around it, but the concept is that's opposed to React and Angular which are backed by giants.
Having something like Facebook and Google means support and commitment, and that's what companies often look for. Companies that don't understand that it's 2017, I mean.
But who knows, Vue can still be king. We have a remarkable champion of this phenomenon: jQuery. It wasn't just John Resig, it was a huge community that grew over time and made it a tool prime for business applications.
But then again, its main contenders (like Prototype, Ext, ...) were dwarves in comparison to Facebook. I still don't know where this will be going, but in my heart I hope there will always be space for ideas from just one brilliant mind.
TypeScript is meant to be an extension of JavaScript. If it implements one of JavaScrpt's features in yet another way, I think it could be a stretch.
Then again, they *could* compile both syntaxes while deprecating the legacy one, I guess. But that would require a new major version (although TS does *not* follow semver).
No mention of the proposed #private properties, hm.
Why should they mention them, though? They're still at stage 2, there's still time to reject them.
But if they'll get to 4, I think it will be time for TypeScript 3.
Well... there goes TypeScript being a superset of JavaScript. This is where the roads separate, I guess, unless TS gets a prompt update.
> we need to allow public fields with the same name.
I'd say there's no such a thing: private properties always begin with a #, while publics ones never do.
?! Where does this comparison make sense?
Laravel is a fully-fledged MVC framework, where Node is just a JavaScript execution environment. A fair comparison would be between Laravel and Express.
And again, Express is just a barebone router with some template engines, whereas Laravel is a battery-included framework with a service container (as you mentioned), a config manager, a default ORM, a testing library and so on. It's more like Angular in this sense, but for back-end development.
Honestly I have a poor idea why Laravel is shipping with Vue now, since one of the most powerful things in Laravel is indeed the routing system. The choice itself to ship with yet another library - and purely a front-end library on top of that, since it can't be used for SSR - is quite against the current general philosophy to be as minimal as possible.