mirror of
https://github.com/vale981/grapher
synced 2025-03-04 17:11:38 -05:00
No description
|
||
---|---|---|
.npm/package | ||
lib | ||
.travis.yml | ||
CHANGELOG.md | ||
LICENSE | ||
main.client.js | ||
main.server.js | ||
package.js | ||
README.md |
Welcome to Grapher
(Build is not failing, it's just phantomjs acting weird on travis, all tests pass)
Documentation
http://grapher.cultofcoders.com
Long Term Support
Version 1.2 will be supported until 2020.
What ?
Grapher is a high performance data fetcher and collection relationship manager for Meteor and MongoDB:
- Makes data MongoDB denormalization easy (storing and linking data in different collections)
- You can link your MongoDB data with any type of database, and fetch it via Queries
- You have the same API for data-fetching whether you want your data to be reactive or not.
Sample
To give you an idea how this works, you can fetch the data like this:
{
users: {
profile: 1,
githubTickets: {},
posts: {
title: 1,
comments: {
text: 1,
date: 1,
author: {
profile: 1
}
}
}
}
}
Updates
Check-out the CHANGELOG for latest updates.
Installation
meteor add cultofcoders:grapher
Useful packages and integrations
Integration with React (cultofcoders:grapher-react)
Provides you with an easy to use "createQueryContainer" function.
Live View (cultofcoders:grapher-live)
Provides a playground for grapher and provides documentation of your data