Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 10 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,30 @@
# Website
# Boa Website

This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
This is the website for the Boa project, a JavaScript engine written in Rust. The website provides documentation, tutorials, and other resources for users and contributors.
You can find it at [boajs.dev](https://boajs.dev).

## Contributing

This website is built using [Docusaurus 3](https://docusaurus.io/), a modern static website generator.

### Installation

```
$ npm
$ npm install
```

### Local Development

```
$ npm start
$ npm run start
```

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

### Build

```
$ npm build
$ npm run build
```

This command generates static content into the `build` directory and can be served using any static contents hosting service.

### Deployment

Using SSH:

```
$ USE_SSH=true npm run deploy
```

Not using SSH:

```
$ GIT_USER=<Your GitHub username> npm run deploy
```

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
5 changes: 3 additions & 2 deletions blog/2024-07-09-boa-release-19.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ Overall, Boa's conformance in real terms has improved by ~6%.
You can check the full list of changes [here][changelog], and the full information on conformance
[here][conformance].

[changelog]: https://github.com/boa-dev/boa/blob/v0.19/CHANGELOG.md
[conformance]: /conformance

<!--truncate-->

## Highlights
Expand Down Expand Up @@ -209,8 +212,6 @@ itself and for users of the engine. Feel free to contact us in [Matrix].
Once again, big thanks to [all the contributors][contributors] of this release!!

[contributors]: https://github.com/boa-dev/boa/graphs/contributors?from=2024-03-05&to=2024-07-11&type=c
[changelog]: https://github.com/boa-dev/boa/blob/v0.19/CHANGELOG.md
[conformance]: /conformance
[collective]: https://opencollective.com/boa
[easy_issues]: https://github.com/boa-dev/boa/issues?q=is%3Aopen+is%3Aissue+label%3AE-Easy
[first_issues]: https://github.com/boa-dev/boa/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22
5 changes: 3 additions & 2 deletions blog/2024-12-05-boa-release-020/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ In this release, our conformance has grown from 87.3% to 89.92% in the official
You can check the full list of changes [here][changelog], and the full information on conformance
[here][conformance].

[changelog]: https://github.com/boa-dev/boa/blob/v0.20/CHANGELOG.md
[conformance]: /conformance

<!--truncate-->

## Feature Highlights
Expand Down Expand Up @@ -209,8 +212,6 @@ itself and for users of the engine. Feel free to contact us in [Matrix].
Once again, big thanks to [all the contributors][contributors] of this release!!

[contributors]: https://github.com/boa-dev/boa/graphs/contributors?from=2024-03-05&to=2024-07-11&type=c
[changelog]: https://github.com/boa-dev/boa/blob/v0.19/CHANGELOG.md
[conformance]: /conformance
[collective]: https://opencollective.com/boa
[easy_issues]: https://github.com/boa-dev/boa/issues?q=is%3Aopen+is%3Aissue+label%3AE-Easy
[first_issues]: https://github.com/boa-dev/boa/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22
2 changes: 2 additions & 0 deletions blog/2025-06-15-temporal-impl-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ First, an aside!
Temporal is a modern API for handling date/time in a calendar and time
zone aware manner that includes nine objects with over 200+ methods.

<!-- truncate -->

In JavaScript, Temporal is a global built-in namespace object that
includes each of these nine built-ins:

Expand Down
Loading