Overview Version History Q & A Rating & Review
Nocterm
Type-safe VS Code snippets for building Nocterm UI components in Dart.
Features • Install • Usage • Snippet Reference • Development
Releases • VS Code Marketplace
Features
Focused snippets for common Nocterm component patterns.
Fast n-prefixed completions in Dart files.
Minimal extension runtime (no commands, no settings).
[!IMPORTANT]
This extension currently contributes snippets for dart files only.
[!NOTE]
The coverage badge is marked as pending until coverage reporting is wired into CI.
Install
From source (this repository)
Install dependencies:
npm install
Compile the extension:
npm run compile
Press F5 in VS Code to launch an Extension Development Host.
[!TIP]
The extension depends on the Dart extension: Dart-Code.dart-code.
Usage
Open a .dart file.
Type one of the snippet prefixes (for example nstless).
Select the snippet from IntelliSense.
Fill in placeholders and tab through editable fields.
Snippet Reference
Prefix
Description
nstless
Insert a StatelessComponent template
nstful
Insert a StatefulComponent template
nstanim
Insert a StatefulComponent with AnimationController
Development
Scripts
npm run compile # Build TypeScript
npm run watch # Watch mode
npm run lint # Lint source
npm test # Run extension tests
Project Structure
snippets/nocterm.code-snippets: Snippet definitions and bodies.
src/extension.ts: Extension entrypoint.
src/test/: Extension test files.
Notes
[!NOTE]
This project is snippet-driven: there are no commands to run from the Command Palette, and no custom settings required.