worldwideweb 0.0.8 → 0.0.10
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 +3 -65
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -1,67 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
<img src="logo.png" alt="browsr logo" width="150">
|
|
3
|
-
<h1>browsr</h1>
|
|
4
|
-
</div>
|
|
1
|
+
# worldwideweb
|
|
5
2
|
|
|
6
|
-
|
|
7
|
-
<i>A minimalistic browser for the Nostr protocol built with Electron</i>
|
|
8
|
-
</div>
|
|
3
|
+
see : https://www.w3.org/People/Berners-Lee/WorldWideWeb.html
|
|
9
4
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
<div align="center">
|
|
13
|
-
<h4>Documentation</h4>
|
|
14
|
-
</div>
|
|
15
|
-
|
|
16
|
-
---
|
|
17
|
-
|
|
18
|
-
[](https://github.com/nostrapps/browsr/blob/gh-pages/LICENSE)
|
|
19
|
-
[](https://npmjs.com/package/browsr)
|
|
20
|
-
[](https://npmjs.com/package/browsr)
|
|
21
|
-
[](https://github.com/nostrapps/browsr/)
|
|
22
|
-
|
|
23
|
-
## Introduction
|
|
24
|
-
|
|
25
|
-
**browsr** is a lightweight, easy-to-use, and privacy-focused browser designed specifically for the Nostr protocol. Built using Electron, browsr provides a clean and intuitive interface for navigating the decentralized web, allowing users to explore and interact with the Nostr ecosystem.
|
|
26
|
-
|
|
27
|
-
## Features
|
|
28
|
-
|
|
29
|
-
- Minimalistic user interface
|
|
30
|
-
- Support for Nostr protocol
|
|
31
|
-
- Address bar for easy navigation
|
|
32
|
-
- Built with Electron for cross-platform compatibility
|
|
33
|
-
|
|
34
|
-
## Getting Started
|
|
35
|
-
|
|
36
|
-
To get started with browsr, follow these simple steps:
|
|
37
|
-
|
|
38
|
-
1. Clone the repository:
|
|
39
|
-
|
|
40
|
-
```bash
|
|
41
|
-
git clone https://github.com/nostrapps/browsr.git
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
2. Install the dependencies:
|
|
45
|
-
|
|
46
|
-
```bash
|
|
47
|
-
cd browsr
|
|
48
|
-
npm install
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
3. Start the application:
|
|
52
|
-
|
|
53
|
-
```bash
|
|
54
|
-
npm start
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
## Contributing
|
|
58
|
-
|
|
59
|
-
We welcome contributions from the community! If you'd like to contribute to the development of browsr, please follow our [contributing guidelines](CONTRIBUTING.md).
|
|
60
|
-
|
|
61
|
-
## Support
|
|
62
|
-
|
|
63
|
-
For support and questions, please open an issue on the [GitHub repository](https://github.com/nostrapps/browsr/issues).
|
|
64
|
-
|
|
65
|
-
## License
|
|
66
|
-
|
|
67
|
-
browsr is licensed under the [MIT License](LICENSE).
|
|
5
|
+

|
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "worldwideweb",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "WorldWideWeb browser in JavaScript",
|
|
5
5
|
"main": "main.cjs",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
8
|
"start": "electron ."
|
|
9
9
|
},
|
|
10
|
+
"bin": {
|
|
11
|
+
"worldwideweb": "electron ."
|
|
12
|
+
},
|
|
10
13
|
"repository": {
|
|
11
14
|
"type": "git",
|
|
12
15
|
"url": "git+https://github.com/melvincarvalho/worldwideweb.git"
|