this.me 2.5.9 β†’ 2.6.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 +6 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -36,7 +36,7 @@ let me = require('this.me');
36
36
  While this approach offers many benefits, including enhanced privacy and user sovereignty, it's still nascent and requires a paradigm shift in development, deployment, and user education.
37
37
 
38
38
  # Setting up your Context. πŸ‘‹πŸ»πŸ‘‹πŸΌπŸ‘‹πŸ½πŸ‘‹πŸΎπŸ‘‹πŸΏ
39
- Defining the environment and context in which your code runs, especially when you're interacting with intelligent agents or services likeΒ me.
39
+ Defining the **environment** and context in which your code runs, especially when you're interacting with intelligent agents or services likeΒ **me.**
40
40
  Having a clear declaration of the environment and the context can have a series of implications for security, interoperability, and clarity. The codebase is often vast, dynamic, and continually evolving. Given the dynamic nature of such environments, ensuring the integrity of the code and data becomes paramount. You wouldn't want an agent to execute or rely on code that has been tampered with or is different from the expected version. This is where hashing comes into play.
41
41
 
42
42
  The **SHA256 cryptographic hash function** is used to produce a unique, fixed-length sequence of characters (a hash) for the data. This setup does a thorough job of hashing the content of files or entire directories.
@@ -47,7 +47,11 @@ Even a tiny change in the content will result in a completely different hash.
47
47
 
48
48
  ### Introduction:
49
49
 
50
- Run node demo.js for quick example.const Me = require('./me.js');
50
+ Run node **demo.js** for quick example.
51
+
52
+ ```js
53
+ const Me = require('./me.js');
54
+ ```
51
55
 
52
56
  ```js
53
57
  // Create a new Me instance
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "this.me",
3
- "version": "2.5.9",
3
+ "version": "2.6.0",
4
4
  "description": "This.me should This.be",
5
5
  "bin": {
6
6
  ".me": "./main.js"