Meteor Password Protect 完整应用

Meteor Password Protect complete Application

我可以 "Password-Protect" 我的整个 Meteor 应用程序类似于 PHP 中的 "htaccess" 吗?

例如:我不希望 public 访问我的站点,但客户希望看到它。

没认出这就是答案。第一个 Google 命中。 https://github.com/Jabbslad/basic-auth

编辑:

其实很简单。

添加包。

meteor add jabbslad:basic-auth

在服务器端代码中添加此代码

var basicAuth = new HttpBasicAuth("guest", "password");
basicAuth.protect();

您可以在存储库中看到更多选项 readme.md