-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Goとライブラリの更新、gopherjsからwasmに変更 #91
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
700f2a6
update server
makiuchi-d daa5c5f
dockerfiles
makiuchi-d 5f73d6c
go-binary wasm
makiuchi-d aa1016b
wasm loader
makiuchi-d be1356b
remove require
makiuchi-d ad0d4b9
wasm loader
makiuchi-d 4b64554
import js
makiuchi-d 457944a
update npm packages
makiuchi-d 86f2852
protobuf/grpc
makiuchi-d 7e44ad9
apollo server
makiuchi-d 9466574
fix backend
makiuchi-d ebb6cdf
dashboard workflow
makiuchi-d 5307c5f
update go libs
makiuchi-d d65d88f
replace deprecated func
makiuchi-d de32bd8
不要なimport削除
makiuchi-d aca4d76
docker base image
makiuchi-d 91cbc17
use default moduleResolution
makiuchi-d cc62e5b
target es2022
makiuchi-d File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
module wsnet2 | ||
|
||
go 1.22.0 | ||
go 1.23.0 | ||
|
||
require ( | ||
github.com/DATA-DOG/go-sqlmock v1.5.2 | ||
github.com/go-sql-driver/mysql v1.7.1 | ||
github.com/go-sql-driver/mysql v1.8.1 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/jmoiron/sqlx v1.3.5 | ||
github.com/jmoiron/sqlx v1.4.0 | ||
github.com/pelletier/go-toml v1.9.5 | ||
github.com/shiguredo/websocket v1.6.1 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/vmihailenco/msgpack/v5 v5.4.1 | ||
go.uber.org/zap v1.27.0 | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 | ||
google.golang.org/grpc v1.62.0 | ||
google.golang.org/protobuf v1.32.0 | ||
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da | ||
google.golang.org/grpc v1.69.2 | ||
google.golang.org/protobuf v1.36.0 | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240221002015-b0ce06bbee7c // indirect | ||
golang.org/x/net v0.33.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241219192143-6b3ec007d9bb // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/prisma | ||
/src/pb | ||
/src/plugins/binary.js | ||
/src/plugins/binary.js.map | ||
/node_modules | ||
/src/plugins/binary.wasm | ||
/src/plugins/wasm_exec.js | ||
/.docker_node_modules | ||
/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,19 @@ | ||
module wsnet2-dashboard/binary | ||
|
||
go 1.19 | ||
go 1.23.0 | ||
|
||
require ( | ||
github.com/gopherjs/gopherjs v1.19.0-beta1 | ||
wsnet2 v0.0.0 | ||
) | ||
require wsnet2 v0.0.0 | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240221002015-b0ce06bbee7c // indirect | ||
google.golang.org/grpc v1.62.0 // indirect | ||
google.golang.org/protobuf v1.32.0 // indirect | ||
golang.org/x/net v0.33.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241219192143-6b3ec007d9bb // indirect | ||
google.golang.org/grpc v1.69.2 // indirect | ||
google.golang.org/protobuf v1.36.0 // indirect | ||
) | ||
|
||
replace wsnet2 => ../../../server |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dial is Deprecated.
https://pkg.go.dev/google.golang.org/grpc#Dial