Linked Questions

11 questions linked to/from Secure distribution of NodeJS applications
65 votes
14 answers
103k views

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 a node.js application?
Mark's user avatar
  • 70.5k
10 votes
3 answers
8k views

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 ...
qualon's user avatar
  • 117
5 votes
2 answers
3k views

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

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 ...
Haider's user avatar
  • 958
2 votes
3 answers
5k views

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

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

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

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 ...
Darkiwi's user avatar
  • 227
0 votes
0 answers
175 views

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

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....