Skip to content

heapsource/fire

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fire.js

Build Status

Fire.js is an experimental framework that aims to reduce the amount of javascript code and callbacks when developing in Node.js by the orchestration of tiny building blocks called Expressions defined in JSON documents.

Example

Example JSON app using a MongoDB database and the MongoDB expressions:

MongoApp.fjson

{
	"name": "MongoApp.Main",
	"json": {
	    "enabledEmails": {
			"@Mongo.Find(users)": {
				"conditions": {
					"enabled": true	
				}
			},
			"@each": {
				"@get(CurrentItem.email)": null
			}
		},
		"disabledEmails": {
			"@Mongo.Find(users)": {
				"conditions": {
					"enabled": false
				}
			},
			"@each": {
				"@get(CurrentItem.email)": null
			}
		}
    }
}

The result will be:

{
	"enabledEmails": ["email1@example.com", "email2@example.com", "email3@example.com"],
	"disabledEmails": ["email4@example.com", "email5@example.com", "email6@example.com"]
}

Installation

The easiest way to install fire.js is using the awesome Node Package Manager.

npm install -g fire

The firejs command line utility should be ready to run your scripts.

Learn more

Supported Node Versions

  • 0.4.5 and above
  • 0.5
  • 0.6

Cloning the Repository

git clone https://github.com/firejs/fire.git

Tests

npm test

Contributors

MIT License

Copyright (c) 2011 Firebase.co and Contributors - http://www.firebase.co

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 NON-INFRINGEMENT. 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.

About

An experimental Framework that uses JSON structures to simplify the definition of complex behavior from asynchronous sources in Node.js.

Resources

License

Stars

Watchers

Forks

Packages

No packages published