Compare commits

...

6 Commits

Author SHA1 Message Date
Holly Stubbs ceffc3eb87 Update README.md 2024-05-01 11:42:22 +01:00
Holly Stubbs c097cc5480 Update dev depends 2024-01-19 10:38:56 +00:00
Holly Stubbs 71a717ae80 fix repo url in package.json 2024-01-19 10:37:13 +00:00
Holly Stubbs d02bf4693b
update LICENSE 2024-01-01 22:35:13 +00:00
Holly Stubbs 2e6ec04512
also update readme links 2024-01-01 22:33:42 +00:00
Holly Stubbs 33e8466e9d
update repo links 2024-01-01 22:30:57 +00:00
4 changed files with 15 additions and 14 deletions

View File

@ -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

View File

@ -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
View File

@ -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",

View File

@ -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"
}