No-Nonsense Javascript
Take back ownership of web development by writing low-level Javascript

What Is No-Nonsense Javascript?

Front-end development these days is a mess:

Saying "no-nonsense Javascript" seems like a contradiction.

Yes, all of these things exist for a reason. There have been some dark days in Javascript's history. There's definitely a trend toward more modular, maintainable code.

And no doubt, sometimes it's worth it. These tools can help large teams maintain code quality for developers with varying degrees of experience. They're also great for quick prototyping, or beginners wanting to learn the basics.

Sometimes they're necessary to prevent cowboy coders from breaking all the rules and creating chaos.

But what if you're a competent developer who knows how to architect and write maintainable code? Your code and productivity suffer because you're working around something you don't really need.

Because in the end, these things are all just layers on top of Javascript.

The code that everything compiles to, and the code that actually gets run by the browser, is Javascript.

And the more Javascript that runs, the more CPU cycles and RAM your app consumes... and the more complicated your codebase is, reducing the likelihood that you understand everything happening under the hood.

What if you could write Javascript in such a way that all these extra layers were unnecessary?

Ask yourself:

If so, this site is for you.