gpt4 book ai didi

windows - 如何在 Windows 上使用 Firebase 工具?

转载 作者:可可西里 更新时间:2023-11-01 09:41:10 25 4
gpt4 key购买 nike

我想在 Windows 机器上开始使用 firebase,但我不明白 https://www.firebase.com/docs/web/quickstart.html 上的入门说明.

我创建了一个包含以下内容的 .html 文件(从该页面上的说明复制而来)。这有效,信息被添加到数据库并从数据库中检索。但是,我在 Linux 上迷路了,就像该页面上的 $ npm install -g firebase-tools 这样的指令。

我在 https://www.firebase.com/docs/hosting/quickstart.html 上通过指向 nodejs.org 的链接安装了 nodejs。

如果我在 node.js 屏幕中执行上述命令(没有 linux $-prompt),我会收到以下错误消息 npm should be run outside the node repl, in your normal shell。(按 Control-D 退出。)

然后呢?

<html>
<head>
<script src="https://cdn.firebase.com/js/client/2.2.1/firebase.js"></script>
</head>
<body>
<script>
var myFirebaseRef = new Firebase("https://torrid-inferno-6000.firebaseio.com/");
myFirebaseRef.set({
title: "Hello!",
author: "Firebase",
location: {
city: "San Francisco",
state: "California",
zip: 94103
}
});
myFirebaseRef.child("location/city").on("value", function(snapshot) {
alert(snapshot.val()); // Alerts "San Francisco"
});
</script>
</body>
</html>

最佳答案

基本上我必须打开命令提示符并切换到C:\Program Files\nodejs,文件npm所在的位置),然后根据指令执行npm命令。稍后在安装 firebase 时执行重新启动以使对 PATH 环境变量的更改生效。之后可以使用 firebase (init, deploy, ...) 命令来部署站点。

关于windows - 如何在 Windows 上使用 Firebase 工具?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28767685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com