Javascript Boilerplate Fatigue
This appears to be the opposite of boilerplate. It's a tool that replaces verbose, brittle, code with a single dependency.
Using Neutrino to jump-start modern JavaScript development
11–20 of 68 posts
Re: Using Neutrino to jump-start modern JavaScript development
#12Javascript Boilerplate Fatigue
create-react-app is a great example of a project that abstracts away all the complexities of a JavaScript build process and dev environment, but customization inevitably requires you to 'eject' and reintroduce that complexity to your project.
This tool goes one step further and supports customization without this eject step.
This is finally where web builds need to be to provide a simple foundation for modern web development so devs can focus more on making apps and less on tooling.
I look forward to trying it out.
Re: Using Neutrino to jump-start modern JavaScript development
#13Is this out of the scope for the basic example or an oversight? Anyway, if this is targeted at beginners, that's a bit of an issue.
Re: Using Neutrino to jump-start modern JavaScript development
#14Re: Using Neutrino to jump-start modern JavaScript development
#15Maybe it's just me, but I didn't find it all that difficult to get started with webpack after a few tutorials and samples. This seems like it hides away something that people should probably understand, which isn't all that difficult to get started with. Also when you start combining different packages in webpack (or encounter an error (or want to make some decisions in the config script)), the standard copy/paste bo…
Re: Using Neutrino to jump-start modern JavaScript development
#16Re: Using Neutrino to jump-start modern JavaScript development
#17I've been doing something like this for a while. I have my entire build process as a project on NPM itself. I just have to import it into my projects and write a small gulp project setup. It's very declarative and if I spent a little more effort could probably mostly eliminate. It has most of my preferred tools in it, including dev server setup, statically generated Pug templates, Babel, Rollup with tree shaking, and…
is it open? Would be interesting to use it.
Here is an example of usage https://github.com/NotionTheory/Primrose/blob/master/gulpfil...
The name is lame, I hadn't considered sharing it and I misremembered that the dev server and doc gen are not yet a default part of the build project (though I could add them easily).
Re: Using Neutrino to jump-start modern JavaScript development
#18I think this is a cool tool, but it's somewhere between funny and depressing that the article brags about how they were able to get a 'Hello, world!' program up in less than 5 minutes .
Re: Using Neutrino to jump-start modern JavaScript development
#19Why not just use Yeoman? Moz really like reinventing the wheel.
Also, Moz is a completely different, unrelated company.