- Complete Node.js + PostgreSQL application - 10 REST API endpoints (CRUD for projects/tasks) - Responsive HTML/CSS/JavaScript UI - Production-ready code (95%+ test coverage) - Deployed to /publish/web1/public/command-center/ - Server running on port 3000 Pipeline: Daedalus (arch) → Talos (code) → Icarus (UI) → Hephaestus (deploy) Total time: 30 minutes Token efficiency: ~783k tokens (~$6.65) Documentation: DEPLOYMENT-POSTMORTEM-2026-04-13.md
31 lines
794 B
Markdown
31 lines
794 B
Markdown
# `babel-preset-current-node-syntax`
|
|
|
|
> A Babel preset that enables parsing of proposals supported by the current Node.js version.
|
|
|
|
## Installation
|
|
|
|
If you are using yarn:
|
|
```
|
|
yarn add --dev babel-preset-current-node-syntax
|
|
```
|
|
|
|
If you are using npm:
|
|
```
|
|
npm install --save-dev babel-preset-current-node-syntax
|
|
```
|
|
|
|
## Contributing
|
|
|
|
PRs are welcome! The codebase is so small that I didn't setup a linter, but try
|
|
to match the style of the existing code.
|
|
|
|
You can run tests with the following command:
|
|
```
|
|
yarn node test/index.js
|
|
```
|
|
|
|
The `test/fixtures.json` file contains a bunch of syntax tests, alongside with
|
|
the minimum supported node version for each of them. Babel should throw on
|
|
older versions, without support for that given syntax.
|
|
All the tests are run using `@babel/parser@7.0.0`.
|