@muze-nl/simplystore 0.2.4 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # SimplyStore
2
2
 
3
- SimplyStore is an attempt to create a radically simpler backend storage server. It does not have a database, certainly no SQL or GraphQL, it is not REST. In return it has a well defined API that is automatically derived from your dataset. It supports JSONTag to allow for semantically meaningful data, without having to do the full switch to Linked Data and triple stores. The query format is javascript, you can post javascript queries that will run on the server. All data is read into memory and is available to these javascript queries without needing (or allowing) disk access or indexes.
3
+ SimplyStore is a radically simpler backend storage server. It does not have a database, certainly no SQL or GraphQL, it is not REST. In return it has a well defined API that is automatically derived from your dataset. It supports JSONTag to allow for semantically meaningful data, without having to do the full switch to Linked Data and triple stores. The query format is javascript, you can post javascript queries that will run on the server. All data is read into memory and is available to these javascript queries without needing (or allowing) disk access or indexes.
4
4
 
5
5
  [JSONTag](https://github.com/poef/jsontag) is an enhancement over JSON that allows you to tag JSON data with metadata using HTML-like tags.
6
6
  Javascript queries are run in a [VM2](https://www.npmjs.com/package/vm2) sandbox.
@@ -112,7 +112,7 @@ Most important: queries cannot change the dataset, it is immutable.
112
112
  <a name="goals"></a>
113
113
  ## Goals of this project
114
114
 
115
- SimplyStore is an attemp to see if we can create a more defined and usable REST like service, out of the box. One where all you need to do is change the data and add some access rights and get a self-describing, browseable, working API.
115
+ SimplyStore is a more defined and usable REST like service, out of the box. One where all you need to do is change the data and add some access rights and get a self-describing, browseable, working API.
116
116
 
117
117
  The SimplyStore design is predicated on the following realisations:
118
118
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muze-nl/simplystore",
3
- "version": "0.2.4",
3
+ "version": "0.3.0",
4
4
  "main": "src/server.mjs",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -16,7 +16,7 @@
16
16
  "homepage": "https://github.com/simplyedit/simplystore#readme",
17
17
  "dependencies": {
18
18
  "@muze-nl/jsontag": "^0.8.4",
19
- "array-where-select": "^0.2.1",
19
+ "array-where-select": "^0.3.0",
20
20
  "codemirror": "^6.0.1",
21
21
  "express": "^4.18.1",
22
22
  "json-pointer": "^0.6.2",