Wintersmith:error加载插件时出错'./node_modules/wintersmith-coffee/':找不到模块'./plugin'

时间:2014-02-23 15:30:41

标签: coffeescript wintersmith

我于2013年11月在wintersmith建立了一个网站。它活在http://powma.com

我要回到它,但它没有建立: - {

我不介意弄脏手,但我不知道从哪里开始。我收到了这个错误:

error Error loading plugin './node_modules/wintersmith-coffee/': Cannot find module './plugin'

有什么建议吗?

谢谢!

麦克

更新

嘿,这是因为coffeescript没有被编译。

我在全球范围内安装了它,但这没有帮助。

$ sudo npm install -g coffee-script

我手动编译它并转移到其他错误。有什么缺失的建议吗?

$ coffee -c plugin.coffee 

这是我的config.json:

{
  "locals":
    { "url": "http://localhost:8080"
    , "title": "Powma"
    , "subTitle": "Linking you to technology"
    , "motto": "We build exceptions sites and applications to connect people to products, services, and each other."
    , "owner": "Michael Cole"
    , "profilePicture": "/static/img/profile-professional.jpg"
    , "inlineSpriteMaxBytes" : 10000
    },
  "views": "./views",
  "plugins":
    [ "./node_modules/wintersmith-coffee/"
    , "./node_modules/wintersmith-stylus/"
    ],
  "require": {
    "moment": "moment",
    "_": "underscore",
    "typogr": "typogr"
  },
  "jade": {
    "pretty": true
  },
  "markdown": {
    "smartLists": true,
    "smartypants": true
  },
  "paginator": {
    "perPage": 3
  }
}

和package.json:

{
  "name": "Powma-com",
  "version": "0.1.1",
  "private": true,
  "engines": {
    "node": "0.10.17"
  },
  "dependencies": {
    "moment": "2.0.x",
    "underscore": "1.5.x",
    "typogr": "0.5.x",
    "wintersmith": "2.0.x",
    "wintersmith-stylus": "git://github.com/MichaelJCole/wintersmith-stylus.git#master",
    "wintersmith-coffee": "0.2.x",
    "express": "3.4.x",
    "sendgrid": "~0.3.0-rc.1.7",
    "express-validator": "~0.8.0",
    "underscore-express": "0.0.4"
  }
}

这是我正在使用的新开发笔记本电脑,因此可能是问题的一部分。

我解决了这个问题,但没有解决它。我真的需要手动编译coffeescript吗?

谢谢!

2 个答案:

答案 0 :(得分:2)

看起来你在node_modules中缺少wintersmith-coffee;确保使用npm install wintersmith-coffee在本地安装它。如果您没有在任何地方使用它,也可以尝试从config.json删除它。

同时查看config.jsonpackage.json也很有帮助。另外,请确保您运行npm installnpm update,以确保安装并更新了package.json中引用的所有内容。

<强>更新

没有安装CoffeeScript可能是个问题。在全局安装之后,我不确定所有shell会话是否都会接收命令并在不重新启动的情况下使用它。使用新的shell会话,查看是否可以构建站点。您也可以尝试独立于您的网站测试Wintersmith。尝试使用wintersmith new somepath生成示例网站,看看是否可以在那里运行wintersmith build。这将是缩小网站和工作站设置之间问题的良好开端。

答案 1 :(得分:2)

我通过在config.json文件中明确指定plugin.coffee解决了这个问题。

{ ...other stuff... "plugins": [ "./node_modules/wintersmith-coffee/plugin.coffee" , "./node_modules/wintersmith-stylus/plugin.coffee" ], ...more stuff... }