Slashdot Mirror


Node.js and JS Foundations Are Merging To Form OpenJS (venturebeat.com)

The Linux Foundation today unveiled several major collaborative partnerships as it looks to cement the development of various open source projects that power much of the web. From a report: First off, the Node.js Foundation and the JS Foundation, which the Linux Foundation launched in 2016, are merging to form the OpenJS Foundation. The merger between the two chief organizations that focus on JavaScript comes six months after they publicly began to explore such a possibility with their communities. The OpenJS Foundation will focus on hosting and funding activities that support the growth of JavaScript and web technologies, the Linux Foundation said in a press release.

The OpenJS Foundation consists of 29 open source JavaScript projects including jQuery, Node.js, Appium, Dojo, and webpack. The merger is supported by 30 corporate and end user members including Google, Microsoft, IBM, PayPal, GoDaddy, and Joyent that recognize the "interconnected nature of the JavaScript ecosystem, and the importance of providing a neutral home for projects which represent significant shared value," the Linux Foundation said in a prepared statement.
Also in the report: The Linux Foundation has created CHIPS Alliance, a project that aims to host and curate open source code relevant to design of chips that power mobile, IoT, and other consumer electronic devices; and the Continuous Delivery Foundation, which aims to serve as a platform for vendors, developers, and users to frequently engage and share insights and best practices to spur the development of open source projects.

It also announced that the GraphQL Foundation is collaborating with Joint Development Foundation to encourage "contributions, stewardship, and a shared investment from a broad group in vendor-neutral events, documentation, tools, and support for the data query language."

2 of 38 comments (clear)

  1. Re:And yet... by Anonymous Coward · · Score: 3, Insightful

    There is a very popular library for parsing command line arguments.

    All told it has 50 dependencies (this is counting sub-dependencies) counting in at over half a megabyte (610kB!).

    To parse command line arguments, which is probably one of the simplest tasks out there.

    Even better, while there are 50 dependencies, there are only 48 packages included: two of the those 50 dependencies are simply different versions, to satisfy versioning requirements of the tree.

    All this is to say that, yes, the packaging system and the overuse of simple third party packages to accomplish simple tasks is still a thing in the JavaScript community. Some of those dependencies are literal one-liners, where the various packaging metadata is larger than the actual JavaScript code.

  2. Is JS becoming worse than Perl? by xanthos · · Score: 3, Insightful

    And this is coming from an old Perl Hacker. The biggest gripe against Perl has always been that it is a write once maintain never type of language. Unless done correctly, and it can be done correctly, it can be near impossible for anyone but the original author to maintain. And sometimes event the original author goes WTF? when they look back at stuff they had previously written. Been there done that. But can anyone say that JS is better? Between the dependencies and the convolutions taken to interact with the various DOM elements it gets ugly very very quickly. I get it that the browser sandbox it is runs in has limitations, but why hasn't a better alternative taken hold? In fact, why is anyone encouraging using this ClusterF of a language on servers via Node.js?

    --
    Average Intelligence is a Scary Thing