简体   繁体   English

如何在客户端服务器上运行我的 node.js 应用程序而不与他们共享代码库?

[英]How do I run my node.js application on a client's server without sharing the codebase with them?

We are using Angular for front end and Node.js for backend.我们将 Angular 用于前端,Node.js 用于后端。 We are in conversation with a client to run our application on their local server, hence if we could use a package executable of the application, it would not give them access to our source code.我们正在与客户对话以在他们的本地服务器上运行我们的应用程序,因此如果我们可以使用应用程序的 package 可执行文件,它不会让他们访问我们的源代码。 We want to know if there are any robust tools that can help us do this or if there is any other way in which we can allow them to use all our application's offerings without giving them any idea of how the application works technically.我们想知道是否有任何强大的工具可以帮助我们做到这一点,或者是否有任何其他方式可以让他们使用我们所有应用程序的产品,而无需让他们了解应用程序的技术工作原理。

I think you have next options我认为你有下一个选择

  1. compiles your backend part into a single executable file nexe将您的后端部分编译为单个可执行文件nexe
  2. encode your critical parts to weird format weird将您的关键部分编码为奇怪的格式
  3. run your backend part in docker after minifier/compressor tool minifier在压缩器/压缩器工具压缩器之后在docker中运行您的后端部分
  4. compiles modules to binary format binary将模块编译为二进制格式binary

  5. mix all options混合所有选项

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何通过客户端JavaScript从我的node.js服务器访问数据? - How do I access data from my node.js server from client javascript? 如何在 Node.js 服务器应用程序中运行 C#? - How do I run C# within a Node.js server application? 在没有节点的服务器上将node.js应用程序作为静态文件运行 - Run node.js application as static files on server without node 如何阻止Node.js / Express提供我的应用程序的源代码? - How do I prevent Node.js / Express serving up my application's source code? 如何将发布数据发送到服务器端node.js应用程序? - How do I send post data to my server side node.js application? 如何将node.js应用程序部署到服务器? - How do I deploy my node.js app to a server? 如何从 promise 中提取值并通过 node.js 服务器将它们发送到客户端? - How can i extract values from promise and send them to client via node.js server? 如果其他服务器无法访问,则Node.js应用程序退出。 如何防止我的应用程序停止? - Node.js application quits if other server is unreachable. How do I prevent my application from stopping? 如何在我的本地计算机上运行 Node.js 应用程序并使用 No-IP 让其他人从 Internet 访问它? - How do I run a Node.js application on my local machine and using No-IP to let someone else access it from the Internet? node.js 在客户端和服务器之间共享 javascript 文件 - node.js sharing javascript file between client and server
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM