https://www.npmjs.com/package/languagedetect would be really nice.
This is An admin package. I think a telescope like aproach would be far way better, since it would be extensible with plugins (for user activity etcā¦) or for example you could change themes more easily.
I dont say this package is bad, but not enough good and could be made much better. I think this would be helpful for many comunity members.
- jss
- jsoniq
- json2json
- oauth2 server
- oath integrations
- leap (update to meteor 1.0)
- hl7 fihr
- bluebutton
- icd10
- brain.js
- genetic.js
Just to name a fewā¦
Dwolla payment integration.
Yah, good package for payments would be awesome. Something like we have with accounts. Wit many modules to easily add new payment processors support.
Bringing this thread back from the deadā¦
I really need a sharedb package. There is a sharejs package, but itās essentially deprecated and using old dependencies, and sharedb is the evolved version of sharejs.
For those of you who donāt know, sharedb provides operational transforms stored in a database and a client to connect to it and receive transformations in realtime, which allows any number of clients to edit the same JSON document simultaneously and it handles conflict resolution and sending out updates to ensure all clients achieve the same synchronized state of the document. Sharedb comes with a mongo adapter that uses mongo oplog tailing, and itās designed for realtime collaborative apps. It would fit perfectly in the meteor ecosystem
There doesnāt seem to be any package out there yet using it. Has anyone here taken a stab at it? Itās looking like Iāll probably have to make my own package, if thatās the case Iāll definitely be open sourcing it when itās ready.
- Generator syntax
function* lazyList() {
let i = 0;
while (i < 100) {
yield i;
i++;
}
}
- Modules, preferably working with
require
on both client and server
export class Blah { }
// ...
let Blah = require('blah');
- es7 style async functions
let doLongProcess = async function (timeout) {
return new Promise(resolve => setTimeout(resolve, timeout);
}
await doLongProcess();
- class mixins
class FancyClass extends Mixin(Mongo.Collection, EventEmitter) { }
- Something that replaces futures with promises, and preferably Bluebird as the tool for promises.