simpla icon indicating copy to clipboard operation
simpla copied to clipboard

Open, modular, and serverless content management for a modern web

Results 17 simpla issues
Sort by recently updated
recently updated
newest added

### 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...

documentation

### 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...

feature

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

epic
needs discussion

### 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....

feature
needs discussion

### 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...

bug

### 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`

bug

### 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...

bug