Skip to content

Commit

Permalink
Fixing dependencies for node 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ericabouaf committed Feb 23, 2011
1 parent ccfc128 commit 3e436bc
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 26 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -8,7 +8,7 @@ Visual scripting for the web, Pipes for Hackers, using Node.js and mongoDB

## Requirements

* [Node.js](http://nodejs.org/) (>= 0.2.5)
* [Node.js](http://nodejs.org/) (>= 0.4.0)
* [npm](http://npmjs.org/)
* [mongoDB](http://www.mongodb.org/)

Expand Down
10 changes: 6 additions & 4 deletions docs/aws_install.html
Expand Up @@ -123,15 +123,17 @@ <h2 id="TODO-Monit">TODO: Monit</h2>

apt-get install -y build-essential git-core nginx libssl-dev pkg-config

NODEVERSION=0.4.1

# Node.js
wget http://nodejs.org/dist/node-v0.2.5.tar.gz
tar xvzf node-v0.2.5.tar.gz
cd node-v0.2.5
wget http://nodejs.org/dist/node-v$NODEVERSION.tar.gz
tar xvzf node-v$NODEVERSION.tar.gz
cd node-v$NODEVERSION
./configure
make
make install
cd ..
node-v0.2.5.tar.gz
node-v$NODEVERSION.tar.gz

# NPM
curl http://npmjs.org/install.sh | sh
Expand Down
10 changes: 6 additions & 4 deletions docs/aws_install.md
Expand Up @@ -63,15 +63,17 @@ apt-get upgrade -y

apt-get install -y build-essential git-core nginx libssl-dev pkg-config

NODEVERSION=0.4.1

# Node.js
wget http://nodejs.org/dist/node-v0.2.5.tar.gz
tar xvzf node-v0.2.5.tar.gz
cd node-v0.2.5
wget http://nodejs.org/dist/node-v$NODEVERSION.tar.gz
tar xvzf node-v$NODEVERSION.tar.gz
cd node-v$NODEVERSION
./configure
make
make install
cd ..
node-v0.2.5.tar.gz
node-v$NODEVERSION.tar.gz

# NPM
curl http://npmjs.org/install.sh | sh
Expand Down
8 changes: 2 additions & 6 deletions docs/custom-modules-packages.html
Expand Up @@ -78,11 +78,7 @@ <h2 id="Creating-a-package">Creating a package</h2>
<li>lib/

<ul>
<li>webhookit-mymodule/

<ul>
<li>index.js</li>
</ul>
<li>webhookit-mymodule.js
</li>
</ul>
</li>
Expand All @@ -106,7 +102,7 @@ <h2 id="Creating-a-package">Creating a package</h2>
"Eric Abouaf &lt;eric.abouaf@gmail.com&gt; (http://neyric.com)"
],
"engines": {
"node" : "&gt;=0.2.5"
"node" : "&gt;=0.4.0"
},
"directories": {
"lib" : "./lib"
Expand Down
5 changes: 2 additions & 3 deletions docs/custom-modules-packages.md
Expand Up @@ -18,8 +18,7 @@ Create a directory structure like this one :
* mymodule/
* package.json
* lib/
* webhookit-mymodule/
* index.js
* webhookit-mymodule.js

The index.js file must contain

Expand All @@ -36,7 +35,7 @@ Then, configure the package.json file :
"Eric Abouaf <eric.abouaf@gmail.com> (http://neyric.com)"
],
"engines": {
"node" : ">=0.2.5"
"node" : ">=0.4.0"
},
"directories": {
"lib" : "./lib"
Expand Down
15 changes: 7 additions & 8 deletions package.json
Expand Up @@ -18,18 +18,17 @@
"webhookit" : "./server.js"
},
"dependencies": {
"connect": ">=0.5.10",
"express": ">=1.0.7",
"mongodb": ">=0.7.9",
"cron": ">=0.1.0",
"ejs": ">=0.2.0",
"should": ">=0.0.4",
"webhookit-comment": "0.0.2",
"webhookit-ejs": "0.0.2",
"webhookit-http": "0.0.4",
"webhookit-jsonpath": "0.0.2",
"webhookit-objectbuilder": "0.0.2",
"webhookit-yql": "0.0.2"
"webhookit-comment": ">=0.0.2",
"webhookit-ejs": ">=0.0.2",
"webhookit-http": ">=0.0.4",
"webhookit-jsonpath": ">=0.0.2",
"webhookit-objectbuilder": ">=0.0.2",
"webhookit-xml2js": ">=0.0.1",
"webhookit-jsonparse": ">=0.0.1"
},
"licenses":[ {"type" : "MIT"} ],
"repository": {
Expand Down

0 comments on commit 3e436bc

Please sign in to comment.