Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 949 Bytes

File metadata and controls

56 lines (39 loc) · 949 Bytes

Build & Development Guide

Quick guide to build and package the Acode Live Server plugin.


Project Structure


liveserver/
├── src/
│   ├── LiveServer.js
│   ├── main.js
│   ├── server.js
│   ├── styles.js
│   ├── ui.js
│   └── utils.js
├── build.js
├── icon.png
├── package.json
├── plugin.json
└── readme.md


⚙ Build Instructions

  1. Install dependencies:

    npm install
  2. Run build (webpack or custom builder):

    npm run build

    To enable auto-build (watch mode):

    npm run watch
  3. The output will be:

    • dist/main.js
    • dist.zip → Install inside Acode → Plugins → Install from ZIP

Maintainer: Sou6900 Forked from: hackesofice/Acode-live-server