modern-javascript
Installation
SKILL.md
Modern JavaScript Skill
Quick Reference Card
Classes
class Service {
#privateField; // Private (ES2022)
static VERSION = '1.0'; // Static property
constructor(config) {
this.#privateField = config.secret;
}
async fetch(url) {
return this.#request('GET', url);
}