1.3.88-5.9 • Published 6 months ago

generator-vced v1.3.88-5.9

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

Vision Code Editor Extension Generator

The Vision Code Editor Extension Generator (VCEEG) is a Yeoman-based generator designed to simplify the creation of extensions for the Vision Code Editor. This generator provides an easy and structured way to kickstart your extension development by generating the basic project structure, configuration files, and example code, allowing you to focus on building the core functionality of your extension.

This README provides detailed instructions on how to install, use, and contribute to the Vision Code Editor Extension Generator.

Table of Contents

  1. Overview
  2. Installation
  3. Usage
  4. Developing the Extension
  5. Contributing
  6. License

Overview

The Vision Code Editor Extension Generator makes it easy to create extensions for the Vision Code Editor, a powerful and highly customizable code editor. By running this generator, you can generate a starter project that includes:

  • Essential configuration files for your extension.
  • A basic directory structure for organizing your source code.
  • Example code to help you get started quickly.

Once you’ve set up your extension, you can develop new features, such as custom commands, toolbar items, views, and more, to extend the Vision Code Editor’s functionality.

Installation

First you need to install generator for Yeoman

npm i -g generator-vced

Second execute

yo vced

Prerequisites

Before installing the generator, ensure you have the following tools installed:

  • Node.js (version 18 or higher)

install by executing

sudo apt install nodejs

if you have nvm (Node Version Manager)

nvm install 18
nvm use 18
  • Yeoman (scaffolding tool)

install by executing

npm i -g yo

If you don't have Node.js or Yeoman installed, follow these steps:

  1. Install Node.js:

    You can download and install Node.js from the official website. After installation, verify the version with:

    node -v