Skip to content

Commit

Permalink
fixed readme issues, added badges
Browse files Browse the repository at this point in the history
  • Loading branch information
SergiiSharpov committed Nov 26, 2024
1 parent 238b76a commit 0bd5a25
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Byteform

![GitHub branch check runs](https://img.shields.io/github/check-runs/theevenstarspace/byteform/main?style=flat)
![npm package minimized gzipped size (scoped)](https://img.shields.io/bundlejs/size/%40evenstar/byteform?style=flat)
![NPM Version](https://img.shields.io/npm/v/%40evenstar%2Fbyteform?style=flat)

**Byteform** is a lightweight and versatile TypeScript library designed for encoding and decoding binary data. It provides an intuitive API to work with binary structures, making it an excellent choice for developers dealing with low-level data operations in both browser and Node.js environments.

## Table of contents
Expand Down Expand Up @@ -50,8 +54,8 @@ const vec3 = new Struct({
});

const bullet = new Struct({
position: Vec3,
velocity: Vec3,
position: vec3,
velocity: vec3,
damage: u8
});

Expand Down
8 changes: 6 additions & 2 deletions docs/docs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Byteform

![GitHub branch check runs](https://img.shields.io/github/check-runs/theevenstarspace/byteform/main?style=flat)
![npm package minimized gzipped size (scoped)](https://img.shields.io/bundlejs/size/%40evenstar/byteform?style=flat)
![NPM Version](https://img.shields.io/npm/v/%40evenstar%2Fbyteform?style=flat)

**Byteform** is a lightweight and versatile TypeScript library designed for encoding and decoding binary data. It provides an intuitive API to work with binary structures, making it an excellent choice for developers dealing with low-level data operations in both browser and Node.js environments.

## Table of contents
Expand Down Expand Up @@ -50,8 +54,8 @@ const vec3 = new Struct({
});

const bullet = new Struct({
position: Vec3,
velocity: Vec3,
position: vec3,
velocity: vec3,
damage: u8
});

Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "0.9.0",
"version": "0.9.1",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"bugs": {
"url": "https://github.com/theevenstarspace/byteform/issues"
},
"homepage": "https://github.com/theevenstarspace/byteform",
"homepage": "https://byteform.js.org",
"packageManager": "[email protected]",
"devDependencies": {
"@eslint/js": "^9.15.0",
Expand Down

0 comments on commit 0bd5a25

Please sign in to comment.