ForSure Logo
ForSure
CLILanguageDocumentationComponents

Getting Started

IntroductionInstallationQuick StartDownloads

Syntax

Basic SyntaxFile StructureCommentsAttributesImport Directives

AI & Neural Network

OverviewExamplesAdvanced FeaturesTeam UsageAPI Reference

Examples

Basic ExamplesIntermediate ExamplesAdvanced Examples

CLI Reference

CommandsOptionsConfiguration

API Reference

OverviewNode APIProgrammatic Usage

Tools & Extensions

VS Code ExtensionSyntax HighlightingEditor Integrations
ForSure Logo
ForSure

A powerful file structure definition language and CLI tool for developers.

GitHubTwitter

Products

CLI LanguageWeb EditorIDE Extensions

Resources

DocumentationExamplesTemplatesBlog

Company

AboutCareersContactPrivacy Policy

© 2026 ForSure. All rights reserved.

TermsPrivacyCookies
Getting Started

Quick Start Guide

Get up and running with ForSure in just a few minutes.

Step 1: Create your first ForSure file

Create a new file with the .forsure extension and define your project structure.

forsure
# project.forsure root: - Type: Directory - Name: src/ <description> Source code directory </description> - Type: File - Name: index.js <description> Main application file </description>

Step 2: Generate your project

Use the ForSure CLI to generate the actual files and directories.

bash
forsure generate project.forsure --output ./my-project

Step 3: Verify the output

Check that your project structure was created correctly.

bash
tree my-project my-project/ └── src/ └── index.js

Next Steps

Learn the Syntax

Deep dive into ForSure's powerful syntax features

View Examples

See real-world examples and use cases