Compare commits
6 commits
Author | SHA1 | Date | |
---|---|---|---|
ceffc3eb87 | |||
c097cc5480 | |||
71a717ae80 | |||
d02bf4693b | |||
2e6ec04512 | |||
33e8466e9d |
4 changed files with 15 additions and 14 deletions
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2023 Holly Stubbs (tgpholly)
|
||||
Copyright (c) 2021-2024 Holly Stubbs (tgpholly)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
@ -22,12 +22,13 @@ I tried to keep it as simple as possible to use, for example if you want to writ
|
|||
writer.writeByte(<number>);
|
||||
```
|
||||
|
||||
You can find a list of all of the methods for [Writers](https://github.com/tgpholly/bufferStuff/blob/master/writers/IWriter.ts) and [Readers](https://github.com/tgpholly/bufferStuff/blob/master/readers/IReader.ts) in their interface files.
|
||||
You can find a list of all of the methods for [Writers](https://git.eusv.net/tgpholly/bufferStuff/src/branch/master/writers/IWriter.ts) and [Readers](https://git.eusv.net/tgpholly/bufferStuff/src/branch/master/readers/IReader.ts) in their interface files.
|
||||
|
||||
## Projects using bufferStuff
|
||||
If your project uses bufferStuff feel free to make a PR to add it to this list!
|
||||
### [tgpholly/mc-beta-server](https://github.com/tgpholly/mc-beta-server)
|
||||
### [tgpholly/mc-beta-server](https://git.eusv.net/tgpholly/mc-beta-server)
|
||||
### [tgpholly/ultrakillMP_server](https://github.com/tgpholly/ultrakillMP_server)
|
||||
### [tgpholly/t00-multiuser](https://git.eusv.net/tgpholly/t00-multiuser)
|
||||
|
||||
## Projects similar to bufferStuff
|
||||
### [tgpholly/csharp-extensions/BinaryTools](https://github.com/tgpholly/csharp-extensions/tree/master/BinaryTools) - Basically bufferStuff but for C#
|
||||
|
|
12
package-lock.json
generated
12
package-lock.json
generated
|
@ -1,17 +1,17 @@
|
|||
{
|
||||
"name": "bufferstuff",
|
||||
"version": "1.5.0",
|
||||
"version": "1.5.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "bufferstuff",
|
||||
"version": "1.5.0",
|
||||
"version": "1.5.1",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"check-outdated": "^2.12.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"terser": "^5.26.0",
|
||||
"terser": "^5.27.0",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
|
@ -1288,9 +1288,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/terser": {
|
||||
"version": "5.26.0",
|
||||
"resolved": "https://registry.npmjs.org/terser/-/terser-5.26.0.tgz",
|
||||
"integrity": "sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==",
|
||||
"version": "5.27.0",
|
||||
"resolved": "https://registry.npmjs.org/terser/-/terser-5.27.0.tgz",
|
||||
"integrity": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"@jridgewell/source-map": "^0.3.3",
|
||||
|
|
10
package.json
10
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bufferstuff",
|
||||
"version": "1.5.0",
|
||||
"version": "1.5.1",
|
||||
"description": "A set of utility classes for reading and writing binary data in NodeJS and the browser",
|
||||
"main": "./lib/index.js",
|
||||
"types": "./lib/index.d.ts",
|
||||
|
@ -20,19 +20,19 @@
|
|||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/tgpholly/bufferStuff.git"
|
||||
"url": "https://git.eusv.net/tgpholly/bufferStuff.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "tgpholly",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/tgpholly/bufferStuff/issues"
|
||||
"url": "https://git.eusv.net/tgpholly/bufferStuff/issues"
|
||||
},
|
||||
"homepage": "https://github.com/tgpholly/bufferStuff#readme",
|
||||
"homepage": "https://git.eusv.net/tgpholly/bufferStuff#readme",
|
||||
"devDependencies": {
|
||||
"check-outdated": "^2.12.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"terser": "^5.26.0",
|
||||
"terser": "^5.27.0",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue