this.me 2.8.6 → 2.8.71
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/README.md +26 -11
- package/index.js +1 -3
- package/jsdoc.json +3 -3
- package/package.json +3 -4
- /package/src/{cli → z_hist/cli}/CLI.md +0 -0
- /package/src/{cli → z_hist/cli}/ascii_art/welcome.js +0 -0
- /package/src/{cli → z_hist/cli}/commands.js +0 -0
- /package/src/{cli → z_hist/cli}/main.js +0 -0
- /package/src/{cli → z_hist/cli}/shell.js +0 -0
- /package/src/{env.js → z_hist/env.js} +0 -0
- /package/src/{hash.js → z_hist/hash.js} +0 -0
- /package/src/{me.js → z_hist/me.js} +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# This.Me
|
|
2
|
-
<img src="./
|
|
3
|
-
|
|
2
|
+
<img src="./Cleaker-removebg-preview.png" alt="SVG Image" style="width:89px;">
|
|
3
|
+
|
|
4
|
+
<img src="https://suign.github.io/assets/imgs/cleak_me-removebg.png" alt="DID Me Art" width="244">
|
|
5
|
+
|
|
6
|
+
<img src="https://suign.github.io/assets/imgs/Cleaker-removebg-preview.png" alt="Cleak Me Please" width="244">
|
|
7
|
+
|
|
8
|
+
[UNDER DEVELOPMENT - SUBJECT TO MAJOR CHANGES]
|
|
4
9
|
|
|
5
10
|
**This.Me** is a class focused on encapsulating user identity, specifically crafted to facilitate the creation of instances ready for hashing and cryptographic signature generation. It opens the door to coding and decoding through "me" signatures, offering a modular framework that prioritizes privacy and integrity in application-wide identity management.
|
|
6
11
|
|
|
@@ -44,21 +49,31 @@ This quick start guide provides a straightforward path to incorporating `this.me
|
|
|
44
49
|
|
|
45
50
|
-----
|
|
46
51
|
|
|
47
|
-
#
|
|
48
|
-
|
|
52
|
+
# About All.This
|
|
53
|
+
|
|
54
|
+
## Modular Data Structures:
|
|
55
|
+
|
|
56
|
+
**[this.me](https://suign.github.io/this.me) - [this.audio](https://suign.github.io/this.audio) - [this.text](https://suign.github.io/this.text) - [this.wallet](https://suign.github.io/this.wallet) - [this.img](https://suign.github.io/this.img) - [this.pixel](https://suign.github.io/Pixels) - [be.this](https://suign.github.io/be.this) - [this.DOM](https://suign.github.io/this.DOM) - [this.env](https://suign.github.io/this.env/) - [this.GUI](https://suign.github.io/this.GUI) - [this.be](https://suign.github.io/this.be) - [this.video](https://suign.github.io/this.video) - [this.atom](https://suign.github.io/this.atom) - [this.dictionaries](https://suign.github.io/this.dictionaries/)**
|
|
57
|
+
|
|
58
|
+
**Each module** in **[all.this](https://neurons.me/all-this)** represents a specific **datastructure**. These classes encapsulate the functionalities and **data specific to their domain.**
|
|
59
|
+
|
|
60
|
+
## **Utils**
|
|
61
|
+
|
|
62
|
+
**[all.this](https://neurons.me/all-this)** not only aggregates these modules but also provides utilities to facilitate the integration, management, and enhancement of these data structures. **For example:**
|
|
63
|
+
|
|
64
|
+
*The integration with [cleaker](https://suign.github.io/cleaker/) ensures each module instance has a **unique cryptographic identity**, enhancing security and data integrity.*
|
|
49
65
|
|
|
50
|
-
|
|
66
|
+
### Neurons.me Ecosystem Glossary:
|
|
51
67
|
|
|
68
|
+
visit: [Neurons.me Glossary](https://suign.github.io/neurons.me/Glossary)
|
|
52
69
|
|
|
53
|
-
|
|
54
|
-
**This.Me** adapts to various environments, enabling `.me` objects to function both locally and within a network. A `.me` object authenticated on a network accesses data beyond the local scope, while unauthenticated instances are confined to local data. This dual functionality ensures seamless interoperability and heightened security.
|
|
70
|
+
Learn more at https://neurons.me
|
|
55
71
|
|
|
56
|
-
|
|
57
|
-
Defining the **environment** and context in which your code runs, especially when you're interacting with intelligent agents or services like **me.**
|
|
72
|
+
**Author:** SuiGn
|
|
58
73
|
|
|
59
|
-
|
|
74
|
+
[By neurons.me](https://neurons.me)
|
|
60
75
|
|
|
61
|
-
|
|
76
|
+
<img src="https://suign.github.io/neurons.me/neurons_logo.png" alt="neurons.me logo" width="123" height="123" style="width123px; height:123px;">
|
|
62
77
|
|
|
63
78
|
|
|
64
79
|
|
package/index.js
CHANGED
package/jsdoc.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"source": {
|
|
3
|
-
"include": ["./src", "./index.js", "./
|
|
3
|
+
"include": ["./src", "./index.js", "./README.md"]
|
|
4
4
|
},
|
|
5
5
|
"opts": {
|
|
6
6
|
"destination": "./docs",
|
|
7
|
-
"template": "
|
|
7
|
+
"template": "../../../../../../Sandbox/dev_tools/assets/better-docs",
|
|
8
8
|
"readme": "./README.md"
|
|
9
9
|
},
|
|
10
10
|
"templates": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
35
|
"label": "Github",
|
|
36
|
-
"href": "https://github.com/suiGn/
|
|
36
|
+
"href": "https://github.com/suiGn/this.me"
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
"label": "Cleaker.me",
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "this.me",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.71",
|
|
4
4
|
"description": "User-Centric.",
|
|
5
|
-
"type": "module",
|
|
6
5
|
"main": "index.js",
|
|
7
6
|
"scripts": {
|
|
8
7
|
"start": "node index.js",
|
|
@@ -21,12 +20,12 @@
|
|
|
21
20
|
},
|
|
22
21
|
"homepage": "https://www.npmjs.com/package/this.me",
|
|
23
22
|
"docs": "https://suiGn.github.io/this.me",
|
|
23
|
+
"type": "module",
|
|
24
24
|
"author": "suiGn",
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"repoType": "NPM Package",
|
|
27
27
|
"category": "dataformatter",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
|
|
30
|
-
"inquirer": "^9.2.12"
|
|
29
|
+
|
|
31
30
|
}
|
|
32
31
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|