https://github.com/lh0x00/meteorx
exposing internal Meteor APIs to hack Meteor easily
https://github.com/lh0x00/meteorx
hack livedata meteor meteorjs meteorx mongoconnection mongocursor session sessioncollectionview sessiondocumentview subscription
Last synced: 3 months ago
JSON representation
exposing internal Meteor APIs to hack Meteor easily
- Host: GitHub
- URL: https://github.com/lh0x00/meteorx
- Owner: lh0x00
- License: mit
- Fork: true (meteorhacks/meteorx)
- Created: 2018-11-29T13:34:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-29T17:46:06.000Z (almost 4 years ago)
- Last Synced: 2024-10-01T05:08:31.372Z (7 months ago)
- Topics: hack, livedata, meteor, meteorjs, meteorx, mongoconnection, mongocursor, session, sessioncollectionview, sessiondocumentview, subscription
- Language: JavaScript
- Homepage: https://atmospherejs.com/lamhieu/meteorx
- Size: 29.3 KB
- Stars: 13
- Watchers: 4
- Forks: 11
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MeteorX
[![github issues][github-issues-image]][github-issues-url]
[![build status][travis-image]][github-project-url]Exposing internal Meteor APIs to hack Meteor easily, fork from [meteorhacks/meteorx](https://github.com/meteorhacks/meteorx).
I will maintain it and update it in the future. If you find an error, please open the issue in this project!## Available APIs on Server-side
```js
MeteorX {
Server: [Function: Server],
// livedata
Session: [Function: Session],
Subscription: [Function: Subscription],
SessionCollectionView: [Function: SessionCollectionView],
SessionDocumentView: [Function: SessionDocumentView],
// mongo-livedata
MongoConnection: { [Function: MongoConnection] _isCannotChangeIdError: [Function] },
MongoCursor: [Function: Cursor],
MongoOplogDriver: { [Function: OplogObserveDriver] cursorSupported: [Function] },
MongoPollingDriver: [Function: PollingObserveDriver],
Multiplexer: [Function: ObserveMultiplexer],
SynchronousCursor: [Function: SynchronousCursor],
}
```## Installation
read more in [atmospherejs](https://atmospherejs.com/lamhieu/meteorx)
```bash
$ meteor add lamhieu:meteorx
```## What you can do with this
Think about your meteor related issues and fix them. Some of them are:
- Unblock Subscriptions
- Remove MergeBox[github-project-url]: https://github.com/lamhieu-vk/meteorx
[travis-image]: https://travis-ci.com/lamhieu-vk/meteorx.svg?branch=master
[github-issues-image]: https://img.shields.io/github/issues/lamhieu-vk/meteorx.svg
[github-issues-url]: https://github.com/lamhieu-vk/meteorx/issues