Linked Questions
11 questions linked to/from Secure distribution of NodeJS applications
65
votes
14
answers
103k
views
node.js - Code Protection?
I want to use node.js in my next project, but my boss does not like that our competitors can read the source code.
Is there a way to protect the JavaScript code?
88
votes
7
answers
191k
views
Is there a way to compile node.js source files? [duplicate]
Is there a way to compile a node.js application?
10
votes
3
answers
8k
views
node.js code protection
I was checking to see if it is possible to distribute a node.js application closed source. Not the client-side Javascript files but the server-side files as a commercial product. I suppose code ...
5
votes
2
answers
3k
views
Why does v8 saves the source code of native javascript in generated binaries?
I've been studying the v8 source, particularly at how the 'mksnapshot' tool includes a compiled image of the native javascript files(runtime.js, json.js...) in the v8 binaries and noticed that it also ...
0
votes
4
answers
1k
views
deploying node.js in compiled form
We are considering node.js for our next server side application. But we don't want our client to be able to look into our application's code. Can we deploy application written in node.js in compiled ...
2
votes
3
answers
5k
views
steps to compile Node.js source into byte code and use it
WE had developed a project in nodejs.
Client will distribute/sell the application with their clients, hence I must needed to hide them(compile) rather than delivering source code.
please provide me ...
0
votes
1
answer
2k
views
How to distribute a Node JS Application? [closed]
I developed a Node.js Application that I would to like to sell to my clients on monthly charges.
I'm looking for solutions to:
Keep my source code safe
Easy client installation
Serial code solution ...
3
votes
1
answer
2k
views
How can I protect node application source code?
My team and I have a cloud based web app; however one client wants to use our app on premise which means we will install the app on the client’s infrastructure which they control.
Does anyone out ...
4
votes
1
answer
2k
views
How to cross compile node modules from Windows to Linux?
Here's the situation :
I have written a small node application on Windows. This application requires a few non-core node modules such as 'ffi' and 'express'. I have installed those with npm and ...
0
votes
0
answers
175
views
Can I run a web app from usb with Bitlocker
As per the title, can I run a web application (AngularJS) from usb with Bitlocker.
I installed xampp portable, git portable and nodejs in usb. But I don't know my application can run normaly. I need ...
1
vote
0
answers
88
views
If NodeJS runs on V8, and V8 compiles JS, why do I need to upload source code to servers?
Source Code secrecy is useful sometimes, specially if there's some risk of it being leaked from the servers. As I've read, google's V8 engine compiles the javascript code to native code on the machine....