我正在学习的教程,并希望将其本地部署到运行MacOS10.8.5的机器上。构建失败,因为在某些node_modules提供的一些测试和示例文件中发现了错误。下面是输出:
$ meteor build osx --architecture os.osx.x86_64 --directory
WARNING: The output directory is under your source tree.
Errors prevented bundling:
While building the application:
b
我已经使用svn导出下载了一个git存储库的特定文件夹:
svn export https://github.com/user/repo.git/trunk/doc/myFolder
现在我在本地有了myFolder文件夹,但在进行更改后,我想将其推送到git代码库中,该目录与我下载它的目录相同。我还需要在不包含的文件列表中包含一个.gitignore文件。
目前,如果我在下载的文件夹中输入git status,它会显示
fatal: Not a git repository (or any of the parent directories): .git
我希望当我推送到repo时,git
我使用node.js express向客户机提供一些静态文件,比如svg和json,所以我使用sendFile()直接发送这些文件。
这是我的服务器文件结构,
/root // the root of the server
/maps // put some static files
/routes/api // put the web API
在web API中
app.get('/buildings/map',function(req,res){
var mappath = 'maps/ARM-MAP_Base.svg
我有一个简单的node.js应用程序:
server.js
const express = require('express');
const app = express();
const PORT = 8080;
app.use(express.static('client'));
// Start the express web server listening on 8080
app.listen(8080, () => {
console.log('Service started on port 8080.');
});