Skip to content

Commit

Permalink
docs: reformat docs
Browse files Browse the repository at this point in the history
  • Loading branch information
IKatsuba committed Sep 5, 2022
1 parent e6625f0 commit b6600e8
Show file tree
Hide file tree
Showing 21 changed files with 290 additions and 158 deletions.
1 change: 1 addition & 0 deletions .gitbook.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
root: ./docs
9 changes: 5 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ about: Create a report to help us improve
title: ''
labels: bug
assignees: IKatsuba

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
Expand All @@ -24,9 +24,10 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. macOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

- OS: [e.g. macOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: IKatsuba

---

**Is your feature request related to a problem? Please describe.**
Expand Down
54 changes: 27 additions & 27 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
name: 'CodeQL'

on:
push:
Expand All @@ -30,40 +30,40 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
language: ['javascript']
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

steps:
- name: Checkout repository
uses: actions/checkout@v2.3.4
- name: Checkout repository
uses: actions/checkout@v2.3.4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release
#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
1 change: 0 additions & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
env:
PVM_LL: silly


jobs:
update:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@

/dist
/coverage

docs/SUMMARY.md
61 changes: 30 additions & 31 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ Let's look at a simple example of reading and writing a file using the native fe
import { readFile, writeFile } from 'fs';

readFile('src/some-file.js', (error, data) => {
if (error) {
console.error(error);
return;
}

writeFile('src/some-file.js', data, (error) => {
if (error) {
console.error(error);
return;
console.error(error);
return;
}

writeFile('src/some-file.js', data, (error) => {
if (error) {
console.error(error);
return;
}

console.log('Success!')
})
console.log('Success!');
});
});
```

Expand Down Expand Up @@ -117,28 +117,27 @@ While working on the library, she looked at the RxJS logo and asked me, "Is this
## Packages
* [x] [child\_process](libs/child-process.md)
* [ ] cluster
* [x] [crypto](libs/crypto.md)
* [ ] dns
* [ ] events
* [x] [fs](libs/fs.md)
* [x] [http](libs/http.md)
* [ ] http2
* [ ] https
* [ ] inspector
* [ ] net
* [ ] process
* [ ] readline
* [ ] repl
* [ ] stream
* [ ] tls
* [ ] tty
* [ ] dgram
* [ ] util
* [ ] worker\_threads
- [x] [child_process](docs/libs/child-process.md)
- [ ] cluster
- [x] [crypto](docs/libs/crypto.md)
- [ ] dns
- [ ] events
- [x] [fs](docs/libs/fs.md)
- [x] [http](docs/libs/http.md)
- [ ] http2
- [ ] https
- [ ] inspector
- [ ] net
- [ ] process
- [ ] readline
- [ ] repl
- [ ] stream
- [ ] tls
- [ ] tty
- [ ] dgram
- [ ] util
- [ ] worker_threads
## We are supported by
[![](.gitbook/assets/gitbook.svg)](https://www.gitbook.com/)[![](.gitbook/assets/jetbrains-variant-2.png)](https://www.jetbrains.com/?from=rxnode)
12 changes: 3 additions & 9 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,13 @@ title: Change Log
---

## v1.0.0
**2022.09.04**


**2022.09.04**

### 🚀 Features

* update rxjs to v7 ([#4508d9c](https://github.com/IKatsuba/rxnode/commit/4508d9c170f5ed17892fc34d9b5b06eaa117fc54))

- update rxjs to v7 ([#4508d9c](https://github.com/IKatsuba/rxnode/commit/4508d9c170f5ed17892fc34d9b5b06eaa117fc54))

### 💥 BREAKING CHANGES

* update rxjs to v7




- update rxjs to v7
21 changes: 10 additions & 11 deletions code_of_conduct.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ In the interest of fostering an open and welcoming environment, we as contributo

Examples of behavior that contributes to creating a positive environment include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members
- Using welcoming and inclusive language
- Being respectful of differing viewpoints and experiences
- Gracefully accepting constructive criticism
- Focusing on what is best for the community
- Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
- The use of sexualized language or imagery and unwelcome sexual attention or

advances

* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
- Trolling, insulting/derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or electronic

address, without explicit permission

* Other conduct which could reasonably be considered inappropriate in a
- Other conduct which could reasonably be considered inappropriate in a

professional setting

Expand All @@ -51,4 +51,3 @@ Project maintainers who do not follow or enforce the Code of Conduct in good fai
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 1.4, available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct.html](https://www.contributor-covenant.org/version/1/4/code-of-conduct.html)

For answers to common questions about this code of conduct, see [https://www.contributor-covenant.org/faq](https://www.contributor-covenant.org/faq)

1 change: 0 additions & 1 deletion contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ npm run test
2. Update [README.md](./) to reflect changes related to public API and everything relevant
3. Make sure you cover all code changes with unit tests
4. When you are ready, create Pull Request of your fork into the original repository

0 comments on commit b6600e8

Please sign in to comment.