this.me 2.1.1

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/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "this.me",
3
+ "version": "2.1.1",
4
+ "description": "this me",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "suiGn",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "this.me": "^2.2.8"
13
+ }
14
+ }
@@ -0,0 +1,21 @@
1
+ # this.me & this.be
2
+
3
+ This project consists of two npm packages, `this.me` and `this.be`, designed to empower users in defining, managing, and utilizing personal data and backend functionalities effectively.
4
+
5
+ ## this.me
6
+
7
+ `this.me` is a powerful npm module that allows users to define and manage personal data, objects, and preferences. It provides an intuitive API to create personalized profiles, customize data, and interact with user-specific information effortlessly.
8
+
9
+ ## this.be
10
+
11
+ `this.be` complements `this.me` by offering a set of backend functionalities, machine learning integration, and privacy controls. With `this.be`, users can make things "be" by building applications, managing privacy settings, and implementing access controls for their defined data and objects.
12
+
13
+ Technical Expectations:
14
+ - Easy-to-use API for defining personal data and user objects with `this.me`.
15
+ - Backend capabilities, machine learning integration, and web development utilities provided by `this.be`.
16
+ - Clear separation of concerns and modularity for flexibility and scalability.
17
+ - Comprehensive documentation to guide users on usage and best practices.
18
+
19
+ Please note that this project is currently in development and aims to provide a powerful yet straightforward toolkit for users to manage their data and build applications seamlessly.
20
+
21
+ For more details, refer to the documentation and examples provided in each package.
@@ -0,0 +1,8 @@
1
+ // Import and re-export the functionalities from different modules in this.be
2
+ // Privacy controls and access methods
3
+ const PrivacyModule = require('./settings.js');
4
+
5
+ // Export the functionalities as a single object
6
+ module.exports = {
7
+ privacy: PrivacyModule
8
+ };
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "this.be",
3
+ "version": "2.1.3",
4
+ "description": "this.be complements this.me ",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "test"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/suiGn/this.be.git"
12
+ },
13
+ "keywords": [
14
+ "JavaScript"
15
+ ],
16
+ "author": "suiGN",
17
+ "license": "MIT",
18
+ "bugs": {
19
+ "url": "https://github.com/suiGn/this.be/issues"
20
+ },
21
+ "homepage": "https://github.com/suiGn/this.be#readme"
22
+ }
@@ -0,0 +1,11 @@
1
+ class PrivacyModule{
2
+ constructor(){
3
+ this.privacy = {
4
+ // Privacy controls
5
+ // ...
6
+ };
7
+ }
8
+ // Access methods
9
+ // ...
10
+ }
11
+ module.exports = PrivacyModule;