museria 0.2.35 → 0.2.36
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.
- package/.github/workflows/build.yml +1 -1
- package/.github/workflows/publish.yml +1 -1
- package/README.md +2 -0
- package/dist/client/museria.client.js +6 -6
- package/dist/face/museria.face.js +8 -8
- package/dist/face/style.css +1 -1
- package/package.json +4 -4
- package/src/browser/face/controllers/app/app.html +7 -0
- package/src/browser/face/controllers/app/app.js +20 -1
- package/src/db/transports/loki/index.js +8 -7
- package/src/node.js +1 -1
- package/src/server/transports/express/index.js +1 -1
- package/test/node.js +0 -16
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Museria is a decentralized music storage based on [spreadable](https://github.com/ortexx/spreadable/), [storacle](https://github.com/ortexx/storacle/) and [metastocle](https://github.com/ortexx/metastocle/).
|
|
4
4
|
|
|
5
|
+
There is [an article here](https://ortex.medium.com/museria-a-decentralized-music-storage-dc2041a5f196) with an explanation.
|
|
6
|
+
|
|
5
7
|
```javascript
|
|
6
8
|
const Node = require('museria').Node;
|
|
7
9
|
|