Skip to content

Commit 0fde127

Browse files
committed
first release
0 parents  commit 0fde127

File tree

1,958 files changed

+330216
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,958 files changed

+330216
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Unpack the NodeJS content here

Build/NJSI_Data/config.ini

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
; This is the configuration file needed to start the project correctly
2+
3+
[Info]
4+
ProgramName = NODE JS APP
5+
6+
[NodeJS]
7+
IntegratedNodeJS = false
8+
9+
[Running]
10+
StartCommand = npm start
11+
ShowConsole = false
12+
InstallDependencies = false
13+
14+
[Dependencies]
15+
InstallCommand = npm install
16+
ShowWindow = false
17+
WindowText = Preparing the program to start, please wait...

Build/NodeJS Invisible.exe

11 KB
Binary file not shown.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const open = require('open');
2+
3+
open('https://github.com/ShizzaHo/NodeJS-Invisible');

DEMO/Dependency install/NJSI_Data/app/package-lock.json

Lines changed: 95 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "app",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"start": "node index"
8+
},
9+
"keywords": [],
10+
"author": "",
11+
"license": "ISC",
12+
"dependencies": {
13+
"open": "^8.4.0"
14+
}
15+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
; This is the configuration file needed to start the project correctly
2+
3+
[Info]
4+
ProgramName = DEMO 2
5+
6+
[NodeJS]
7+
IntegratedNodeJS = false
8+
9+
[Running]
10+
StartCommand = npm start
11+
ShowConsole = false
12+
InstallDependencies = true
13+
14+
[Dependencies]
15+
InstallCommand = npm install
16+
ShowWindow = true
17+
WindowText = Preparing the program to start, please wait...
11 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Unpack the NodeJS content here
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const fs = require("fs");
2+
3+
fs.writeFile("hello world.txt", "NodeJS Invisible", () => {});

0 commit comments

Comments
 (0)