javascript-obfuscator / javascript-obfuscator-ui

A web UI to the JavaScript Obfuscator node.js package.
https://obfuscator.io
BSD 2-Clause "Simplified" License
230 stars 130 forks source link

windows npm run updatesemantic is error #29

Closed manyhelp closed 3 years ago

manyhelp commented 5 years ago

windows10: npm run updatesemantic

cp App/styles/theme.config ./node_modules/semantic-ui-less/theme.config;

error

israndi commented 4 years ago

javascript-obfuscator-ui on windows

you must install win-node-env

npm install -g win-node-env

git clone https://github.com/javascript-obfuscator/javascript-obfuscator-ui.git cd javascript-obfuscator-ui

in file package.json edit ================= "updatesemantic": "cp App/styles/theme.config ./node_modules/semantic-ui-less/theme.config; rm -Rf ./node_modules/semantic-ui-less/site; cp -R App/styles/site ./node_modules/semantic-ui-less/" to ================= "updatesemantic": "copy App\styles\theme.config node_modules\semantic-ui-less && xcopy /E /I App\styles\site node_modules\semantic-ui-less\site"

yarn install [or] npm install

Running the express server

node server.js

The server runs on http://localhost:3000/ from web browser

sanex3339 commented 3 years ago

Closed as old