museria 0.2.32 → 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 +4 -0
- package/dist/client/museria.client.js +7 -7
- package/dist/face/fa-brands-400.eot +0 -0
- package/dist/face/fa-brands-400.svg +41 -41
- package/dist/face/fa-brands-400.ttf +0 -0
- package/dist/face/fa-brands-400.woff +0 -0
- package/dist/face/fa-brands-400.woff2 +0 -0
- package/dist/face/fa-solid-900.eot +0 -0
- package/dist/face/fa-solid-900.svg +2 -2
- package/dist/face/fa-solid-900.ttf +0 -0
- package/dist/face/fa-solid-900.woff +0 -0
- package/dist/face/fa-solid-900.woff2 +0 -0
- package/dist/face/museria.face.js +9 -9
- package/dist/face/style.css +5 -5
- package/package.json +5 -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 +24 -3
- package/src/server/transports/express/index.js +1 -1
- package/src/utils.js +16 -5
- package/test/node.js +12 -0
- package/test/utils.js +6 -0
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
|
|
@@ -140,6 +142,8 @@ When you create an instance of the node you can pass options below. Only specifi
|
|
140
142
|
|
141
143
|
* {number|string} __[task.cleanUpMusicInterval="30s"]__ - music cleanup task interval.
|
142
144
|
|
145
|
+
* {number|string} __[task.beautifySongTitlesInterval="10m"]__ - songs title beautification task interval.
|
146
|
+
|
143
147
|
## Client interface
|
144
148
|
|
145
149
|
async __Client.prototype.addSong()__ - add the file to the network.
|