Skip to content

Commit

Permalink
Update landing page (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen authored Nov 15, 2023
1 parent d0e91b4 commit e649f4c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 19 deletions.
13 changes: 9 additions & 4 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,13 @@ export default defineConfig({
{ text: 'Linter', link: '/docs/usage/linter' },
{ text: 'Parser', link: '/docs/usage/parser' },
{ text: 'Resolver', link: '/docs/usage/resolver' },
{ text: 'Philosophy', link: '/docs/usage/philosophy' },
],
},
{
items: [
{ text: 'Philosophy', link: '/docs/usage/philosophy' },
{ text: 'Benchmarks', link: '/docs/usage/benchmarks' },
]
}
],
'/docs/contribute/': [
Expand Down Expand Up @@ -92,10 +97,10 @@ export default defineConfig({
{ text: 'References', link: '/docs/learn/references' },
],
'/blog/': [
{ text: 'High Performance JavaScript Toolchain', link: '/blog/2022-02-10-js-tooling-research' },
{ text: 'A research on JavaScript linters', link: '/blog/2022-08-08-linter-research' },
{ text: 'Announcing Oxc', link: '/blog/2023-11-07-announcing-oxc' },
{ text: 'Oxlint General Availability', link: '/blog/2023-11-08-announcing-oxlint' },
{ text: 'Announcing Oxc', link: '/blog/2023-11-07-announcing-oxc' },
{ text: 'A research on JavaScript linters', link: '/blog/2022-08-08-linter-research' },
{ text: 'High Performance JavaScript Toolchain', link: '/blog/2022-02-10-js-tooling-research' },
]
},
},
Expand Down
6 changes: 6 additions & 0 deletions docs/docs/usage/benchmarks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Benchmarks
outline: deep
---

# Benchmarks
2 changes: 1 addition & 1 deletion docs/docs/usage/linter.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ outline: deep
badges:
- src: https://img.shields.io/npm/dw/oxlint
alt: npm
- src: https://img.shields.io/github/stars/oxc-project/oxc"
- src: https://img.shields.io/github/stars/oxc-project/oxc
alt: GitHub Repo stars
---

Expand Down
28 changes: 14 additions & 14 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# https://vitepress.dev/reference/default-theme-home-page
layout: home
hero:
name: "The JavaScript Oxidation Compiler"
text: ""
tagline: A collection of high-performance JavaScript tools written in Rust
name: 'The JavaScript Oxidation Compiler'
text: ''
tagline: A collection of JavaScript tools written in Rust
image:
src: https://raw.githubusercontent.com/oxc-project/oxc-assets/main/logo-round.png
alt: The JavaScript Oxidation Compiler
Expand All @@ -16,21 +16,21 @@ hero:
text: View on GitHub
link: https://github.com/oxc-project/oxc
features:
- title: Parser
- title: <a href="/usage/parser">Parser ✅</a>
details: 2x faster than swc<br>Passes 99% of Test262
- title: Linter
- title: <a href="/usage/linter">Linter ✅</a>
details: 50 - 100x faster than ESLint<br>Zero config
- title: Resolver
details: 28 faster than enhanced-resolve<br>Feature complete
- title: <a href="/usage/resolver">Resolver ✅</a>
details: 28x faster than enhanced-resolve<br>Feature complete
- title: Formatter 🚧
details: Prettier compatible<br>Work in progress
- title: Transformer
details: Babel Compatible<br>Work in Progress
details: Babel compatible<br>Prototype
- title: Minifier
details: Speed of ESBuild<br>Optimization of Google Closure Compiler<br>Prototype
- title: Formatter
details: Prettier-like<br>To be worked on
- title: Ezno Type Checker
details: A novel type checker with TypeScript syntax
- title: Rspack Bundler
details: Optimization of Google Closure Compiler<br>Prototype
- title: <a href="https://github.com/kaleidawave/ezno">Ezno Type Checker</a>
details: A novel TypeScript type checker
- title: <a href="https://rspack.dev">Rspack Bundler ✅</a>
details: Rust port of Webpack<br>Partnership
- title: Rolldown Bundler
details: Rust port of Rollup<br>Partnership
Expand Down

0 comments on commit e649f4c

Please sign in to comment.