如何为开发人员构建框架

发布于 2024-12-10 05:51:29 字数 217 浏览 0 评论 0原文

我正在开发一个 JavaScript 应用程序,其他开发人员可以在该应用程序的基础上构建自己的应用程序。将为他们提供一个框架。

我的问题:

如何实现这个框架,使开发人员能够访问某些功能或对象。例如,我想阻止访问窗口对象的某些属性。

我考虑过解析他们的代码,我认为这是一个很好的解决方案。但我不确定它是否适用于混淆的代码。

我想要一些关于我应该如何做的建议。

I am working on a JavaScript application that let's other developers build their own apps on top of it. A framework will be provided for them.

My question:

How do I implement this framework in such a way that developers have access to certain functions or objects. For example, I would like to prevent access to certain properties of window object.

I thought about parsing their codes which I believe is a good solution. But I am not positive that it would work on obfuscated codes.

I would like some suggestions on how I should do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久随 2024-12-17 05:51:30

你的方法听起来有缺陷。您真的不想通过隐藏开发人员习惯访问的内容来与他们“战斗”。

我建议您尝试提供完整的(且有详细记录的)API,以鼓励开发人员以您期望的方式使用您的框架。了解他们的用例(您期望他们如何使用您的平台)并提供 API,使坚持您的“支持”对象变得轻而易举。

关于封装的一般主题(例如,使函数私有),您可以在 Javascript 中使用多种模式。像 JavaScript Patterns 这样的书对您来说是一个很好的参考。或者,搜索“javascript 私有函数”应该可以让您找到诸如此类的内容...

JavaScript 私有方法

Your approach sounds flawed. You really don't want to be "fighting" with your developers by hiding things that they're used to accessing.

I would suggest that you try and provide a full (and well documented) API that encourages developers to use your framework in ways that you expect. Understand their use cases (how you expect them to use your platform) and provide APIs that make sticking to your "supported" objects a no-brainer.

On the general topic of encapsulation (e.g. making functions private) then there are various patterns that you can employ in Javascript. A book such as JavaScript Patterns would be a great reference for you. Alternatively, searching for "javascript private functions" should get you to things such as this...

JavaScript private methods

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文