AllcountJS 入门指南的问题

Problems with AllcountJS Getting Started Guide

我在安装框架 AllcountJS 时遇到问题。

我按照标准显示的一切: https://allcountjs.com/docs/getting-started

但是当我开始时,一切都停止了

MacBook-Pro:vdgcrm vdg$ allcountjs run
Using db url: mongodb://localhost:27017/vdgcrm
{ Error: Cannot find module '../build/Release/bson'
at Function.Module._resolveFilename (module.js:470:15)
at Function.Module._load (module.js:418:25)
at Module.require (module.js:498:17)
at require (internal/module.js:20:19)
at Object.<anonymous> (/Users/vdg/vdgcrm/node_modules/bson/ext/index.js:15:10)
at Module._compile (module.js:571:32)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3) code: 'MODULE_NOT_FOUND' }
js-bson: Failed to load c++ bson extension, using pure JS version
Failed to fetch "app-config". Trying to use as regular directory.

请帮忙解决这个问题,因为这对我的大学学习很有必要。

错误提示 AllcountJS 无法通过 npm 系统找到 bson 模块。最简单的解决方法是更改​​ index.js 文件中的 require 路径。

因此,转到 node_modules/bson/ext/index.js 并更改所有行:

bson = require('../Release/bson');

bson = require('../browser_build/bson');

另外,请记住,根据官方文档,MongoDB 应该是 运行ning 才能 运行 这个例子。然后,确保你有它 properly installed and running.