Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Initial files
  • Loading branch information
ajlopez committed Jul 9, 2013
0 parents commit ac454f1
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
node_modules
1 change: 1 addition & 0 deletions .npmignore
@@ -0,0 +1 @@
/samples
23 changes: 23 additions & 0 deletions LICENSE
@@ -0,0 +1,23 @@

Copyright (C) 2013, Angel J Lopez
http://www.ajlopez.com
http://ajlopez.wordpress.com
http://twitter.com/ajlopez

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
55 changes: 55 additions & 0 deletions README.md
@@ -0,0 +1,55 @@
# SimpleMule

Simple Mule-like implementation for Node.js

## Installation

Via npm on Node:

```
npm install simplemule
```

## Usage

TBD

## Development

```
git clone git://github.com/ajlopez/SimpleMule.git
cd SimpleMule
npm install
npm test
```

## Samples

TBD

## Inception

Years ago (+- 8 years) I gave a talk about ESB (Enterprise Service Bus) demoing Mule:

- https://github.com/mulesoft/mule
- http://www.mulesoft.org/what-mule-esb

That old version was a simple console application, with an ugly XML configuration file. Now, it has lot of
functionality (check the above links). I think it is time to write a simple version for Node.js. Instead of
Mule connectors, this version has components: arbitrary functions that receive and send/post message to other
components.

Related projects:

- [SimpleStorm](https://github.com/ajlopez/SimpleStorm)
- [SimpleBus](https://github.com/ajlopez/SimpleBus)

## Contribution

Feel free to [file issues](https://github.com/ajlopez/SimpleMule) and submit
[pull requests](https://github.com/ajlopez/SimpleMule/pulls) — contributions are
welcome.

If you submit a pull request, please be sure to add or update corresponding
test cases, and ensure that `npm test` continues to pass.

20 changes: 20 additions & 0 deletions package.json
@@ -0,0 +1,20 @@
{ "name": "simplemule"
, "description": "Run simplemule plugins"
, "keywords": [ "plugin", "run", "engine" ]
, "version": "0.0.1alpha"
, "author": "Angel 'Java' Lopez <webmaster@ajlopez.com> (http://www.ajlopez.com)"
, "repository": { "type": "git", "url": "git://github.com/ajlopez/SimpleMule.git" }
, "main": "./lib/simplemule.js"
, "engines": { "node": ">= 0.6.0 && < 0.11.0" }
, "scripts": {
"test": "nodeunit test"
}
, "bin": {
"simplemule": "./bin/simplemule"
}
, "dependencies": {
}
, "devDependencies": {
"nodeunit": ">= 0.7.4"
}
}

0 comments on commit ac454f1

Please sign in to comment.