如何在 Windows 上使用 Firebase 工具?
How to use Firebase-tools on Windows?
我想在 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
link 到 nodejs.org 之后安装了 nodejs
如果我在 node.js 屏幕中执行上述命令(没有 linux $-提示),我会收到以下错误消息 npm should be 运行 outside the node repl , 在您的正常 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, ...) 命令来部署站点。
Firepit 是为 Windows 构建的新 CLI 工具,它试图成为原生的 firebase-tools
Firepit is a standalone, portable version of the Firebase CLI which has no depedencies (including Node.js). Download, click, and immediately get access to both firebase and npm commands.
我想在 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
link 到 nodejs.org 之后安装了 nodejs如果我在 node.js 屏幕中执行上述命令(没有 linux $-提示),我会收到以下错误消息 npm should be 运行 outside the node repl , 在您的正常 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, ...) 命令来部署站点。
Firepit 是为 Windows 构建的新 CLI 工具,它试图成为原生的 firebase-tools
Firepit is a standalone, portable version of the Firebase CLI which has no depedencies (including Node.js). Download, click, and immediately get access to both firebase and npm commands.