simpla
simpla copied to clipboard
Open, modular, and serverless content management for a modern web
### I'm submitting a Feature request ### Description Simpla's adapter interfaces aren't currently documented, meaning that nobody can create their own adapters, making them somewhat pointless (especially until we create...
### I'm submitting a Feature request ### Description When we moved to Simpla OSS we lost querying support (ie: the `find` method). We need to reimplement this functionality, using static...
Simpla currently uses promises and observer methods to react to data, eg: ```js Simpla.get('/foo').then(...); Simpla.observe('/foo', () => { ... }); ``` This has a few problems: - Duped logic between...
### I'm submitting a Feature request ### Description Right now Simpla is tightly coupled to using Github as a backend. Instead, we should split both Auth and Storage into adapters....
### I'm submitting a Bug report ### Description In v2, creating an object `/foo/bar/baz` would ensure `/foo` and `/bar` existed as empty objects (i.e. type null and data an empty...
### I'm submitting a Bug report ### Description When calling `Simpla.remove`, the child hierarchies aren't removed e.g. calling `Simpla.remove('/foo')` wouldn't remove `/foo/bar`
### Scenario Calling `Simpla.set('foo.bar.baz', { ... })`, before having calling `set` / `get` on either ancestor `foo` or `foo.bar`, may result in incorrect data being stored in the buffer for...