← Back to Repository

SimpelNodeRunnner

Hash: 5efaca5effb718582dc2468513252827fe8da1a5

File Content
Raw / Download
commit b26363e19f470e09d723955b6fcfda6e3e101769
Author: Robin <robin@rl-dev.de>
Date:   Tue Feb 3 08:55:56 2026 +0100

    + URL Edits
    + README.md Edit
    + New Build

diff --git a/README.md b/README.md
index d325827..760d5b2 100644
--- a/README.md
+++ b/README.md
@@ -1,45 +1,75 @@
-# Node Runner for VS Code
+<div align="center">
+  <img src="icon.png" alt="Node Runner Icon" width="128" />
+  
+  # Node Runner for VS Code
 
-Run Node.js scripts directly from the editor, similar to the Python Runner. Provides one-click start/stop, an NPM commands sidebar, and a Node.js update check.
+  **Execute Node.js scripts effortlessly directly from your editor.**
+  
+  [![Version](https://img.shields.io/badge/version-0.0.3-blue.svg)](https://rl-dev.de/git/view/NodeRunner)
+  [![License](https://img.shields.io/badge/license-MIT-green.svg)](https://rl-dev.de/git/view/NodeRunner)
+  [![VS Code](https://img.shields.io/badge/Visual%20Studio%20Code-1.70%2B-blueviolet.svg)](https://code.visualstudio.com/)
 
-## Features
+</div>
 
-### 🚀 Run scripts
-Start your JavaScript files (`.js`) with a single click using the **play icon** in the editor title bar.
+---
+
+**Node Runner** provides a seamless experience for Node.js developers in VS Code. Inspired by the popular Python Runner, it allows you to run, stop, and manage your Node.js scripts and NPM commands without leaving your code.
+
+## ✨ Features
+
+### 🚀 Instant Execution
+Run your current JavaScript file (`.js`) instantly with a single click on the **Play** button in the editor title bar. No complex launch configurations required.
+
+### ⏹️ Control Execution
+Need to stop a long-running script or server? Simply hit the **Stop** button in the title bar to terminate the process immediately.
+
+### 📦 NPM Command Center
+Access your project's `package.json` scripts and essential NPM commands from a dedicated **Activity Bar View**:
+- **Scripts:** One-click execution of any script defined in your `package.json`.
+- **Quick Actions:**
+  - `npm install` - Install dependencies.
+  - `npm init` - Initialize a new project.
+  - `npm outdated` - Check for outdated packages.
+  - `npm audit` - Run security audit.
 
-### ⏹️ Stop execution
-Terminate running scripts anytime with the **stop icon**.
+### 🔄 Node.js Version Check
+Stay up-to-date with automatic checks for the latest Node.js LTS version. The extension can notify you if your local version is outdated and provide a direct link to upgrade.
 
-### 📦 NPM commands & sidebar
-Find your `package.json` scripts and quick actions in the Activity Bar view:
-- `npm install`
-- `npm init`
-- `npm outdated`
-- `npm audit`
+## 📥 Installation
 
-### 🔄 Node.js update check
-Automatically (on activation) or manually check if your Node.js version is outdated and get a download link for the latest LTS.
+1. Open **VS Code**.
+2. Go to the **Extensions** view (`Ctrl+Shift+X`).
+3. Search for **"Simple Node.js Runner"**.
+4. Click **Install**.
 
-## Installation
+## 🛠️ Usage
 
-Install via the VS Code Marketplace or load the extension locally for development.
+### Running a Script
+1. Open any `.js` file in the active editor.
+2. Click the **Play** icon $(play) in the top-right editor title bar.
+3. Output will appear in the **"Node Runner"** output channel.
 
-## Requirements
+### Using NPM Commands
+1. Click on the **Node Runner** icon in the Activity Bar.
+2. Expand the **NPM Commands** view.
+3. Click on the **Run** icon $(play-circle) next to any script to execute it.
 
-- Node.js must be installed and available in your system PATH.
+## 📋 Requirements
 
-## Usage
+- **Node.js**: Must be installed and added to your system's `PATH`.
+- **VS Code**: Version 1.70.0 or higher.
 
-- Open a `.js` file and click the play icon to run it; use stop to terminate.
-- Open the “NPM Commands” view to trigger common commands or run `package.json` scripts.
-- Use the command palette to run “Node Runner: Check for Node.js Updates”.
+## 🤝 Support & Feedback
 
-## Contact & Support
+If you encounter any issues or have suggestions for improvements, please feel free to reach out or report a bug.
 
-**Developer:** Xarmina Private  
-**Website:** [https://xarmina.eu/](https://xarmina.eu/)  
-**Email:** [admin@xarmina.eu](mailto:admin@xarmina.eu)  
-**Repository:** [https://rl-dev.de/git/NodeRunner.git](https://rl-dev.de/git/NodeRunner.git)
+- **Developer:** Xarmina Private
+- **Website:** [xarmina.eu](https://xarmina.eu/)
+- **Email:** [admin@xarmina.eu](mailto:admin@xarmina.eu)
+- **Source Code:** [rl-dev.de/git/view/NodeRunner](https://rl-dev.de/git/view/NodeRunner)
+- **Issue Tracker:** [rl-dev.de/git/NodeRunner/issues](https://rl-dev.de/git/NodeRunner/issues)
 
 ---
-**Enjoy coding!**
+<div align="center">
+  <sub>Made with ❤️ by Xarmina Private</sub>
+</div>
diff --git a/package.json b/package.json
index 0a23c18..6e6eed6 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "name": "xarminasnoderunner",
   "displayName": "Simple Node.js Runner",
   "description": "Run Node.js scripts directly from VS Code editor like Python Runner",
-  "version": "0.0.2",
+  "version": "0.0.3",
   "publisher": "Xarmina",
   "author": {
     "name": "Xarmina Private",
@@ -12,7 +12,7 @@
   "icon": "icon.png",
   "repository": {
     "type": "git",
-    "url": "https://rl-dev.de/git/NodeRunner.git"
+    "url": "https://rl-dev.de/git/view/NodeRunner"
   },
   "engines": {
     "vscode": "^1.70.0"
@@ -33,7 +33,7 @@
   },
   "homepage": "https://xarmina.eu/",
   "bugs": {
-    "url": "https://rl-dev.de/git/NodeRunner.git"
+    "url": "https://rl-dev.de/git/NodeRunner/issues"
   },
   "license": "MIT",
   "activationEvents": [
diff --git a/xarminasnoderunner-0.0.3.vsix b/xarminasnoderunner-0.0.3.vsix
new file mode 100644
index 0000000..ac189b9
Binary files /dev/null and b/xarminasnoderunner-0.0.3.vsix differ