<feed xmlns='http://www.w3.org/2005/Atom'>
<title>gorankusu/example.go, branch main</title>
<subtitle>The Go library for load testing HTTP and WebSocket endpoints.</subtitle>
<id>http://git.kilabit.info/gorankusu/atom?h=main</id>
<link rel='self' href='http://git.kilabit.info/gorankusu/atom?h=main'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/'/>
<updated>2026-02-03T21:46:49Z</updated>
<entry>
<title>cmd/gorankusu: implement socket based activation with systemd</title>
<updated>2026-02-03T21:46:49Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2026-02-02T16:11:46Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=4040e757445faee58544bf65bc5fa65458b56f9d'/>
<id>urn:sha1:4040e757445faee58544bf65bc5fa65458b56f9d</id>
<content type='text'>
The internal/cmd/gorankusu now can run using systemd.socket(5).
</content>
</entry>
<entry>
<title>cmd/gorankusu: add flags to set HTTP address and development mode</title>
<updated>2025-02-03T12:42:09Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-12-08T08:33:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=19b689c4345ec43c41eb1ce4732794e28a6897a8'/>
<id>urn:sha1:19b689c4345ec43c41eb1ce4732794e28a6897a8</id>
<content type='text'>
The flag "dev" is boolean that when set will run service in development
mode, watching the adoc and ts files.

The flag "http" is string that set the HTTP listen address.
</content>
</entry>
<entry>
<title>all: add git.sr.ht APIs into example</title>
<updated>2024-06-08T16:36:31Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-06-08T16:36:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=6faa2096cd2b13b8d5b16a4d9940777ea4dc3d03'/>
<id>urn:sha1:6faa2096cd2b13b8d5b16a4d9940777ea4dc3d03</id>
<content type='text'>
The APIs is created using https://man.sr.ht/git.sr.ht/api.md as
reference.
We also needs the API to create webhook since no other way to create it
in current sourcehut web.
</content>
</entry>
<entry>
<title>all: refactoring form input for multipart form-data</title>
<updated>2024-04-24T08:09:33Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-04-24T08:09:33Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=f5aa31cc48e78816d6eec75a03be4abdd7cb6649'/>
<id>urn:sha1:f5aa31cc48e78816d6eec75a03be4abdd7cb6649</id>
<content type='text'>
This changes replace handling type for storing multipart form-data from
"map[string][]byte" to [*multipart.Form] based on changes on module
"pakakeh.go".
</content>
</entry>
<entry>
<title>all: update module pakakeh.go to the tip</title>
<updated>2024-03-15T06:58:56Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-03-15T06:58:56Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=8ba25dd9f5d823a4bd66967b33ee9d2624397129'/>
<id>urn:sha1:8ba25dd9f5d823a4bd66967b33ee9d2624397129</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: replace module "share" with "pakakeh.go"</title>
<updated>2024-03-05T11:15:35Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-03-05T09:36:32Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=cb9e9ecf8466386621954acdafc460ecd0c3f82f'/>
<id>urn:sha1:cb9e9ecf8466386621954acdafc460ecd0c3f82f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: move reading GORANKUSU_DEV environment to [Environment.IsDevelopment]</title>
<updated>2024-02-20T18:51:34Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-02-20T18:51:22Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=f08f1c15ff863d2829af8be8ddf392e9241d0f89'/>
<id>urn:sha1:f08f1c15ff863d2829af8be8ddf392e9241d0f89</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: add parameter to use custom listen address in NewExample</title>
<updated>2024-02-20T18:36:39Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-02-20T18:36:39Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=f8b6b66d9b407f7441a9170b46e42d928532f732'/>
<id>urn:sha1:f8b6b66d9b407f7441a9170b46e42d928532f732</id>
<content type='text'>
This will allow running Example server with "make dev" and the test with
"make" or "make test" at the same time.
</content>
</entry>
<entry>
<title>all: add global HTTP headers for Target</title>
<updated>2024-02-20T18:34:56Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-02-20T18:29:25Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=9ca138628023b926ddf07cbd2e93562b8e782cf6'/>
<id>urn:sha1:9ca138628023b926ddf07cbd2e93562b8e782cf6</id>
<content type='text'>
The Headers field on Target define the global headers that will be send
along with all HTTPTarget or WebSocketTarget.
The same header can also be defined on HTTPTarget that override the
value of Target.
</content>
</entry>
<entry>
<title>all: remove Run in Example</title>
<updated>2024-02-18T17:37:46Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-02-18T17:37:46Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=08de328c6bfa5719bdd7003e3064668fd4e62f27'/>
<id>urn:sha1:08de328c6bfa5719bdd7003e3064668fd4e62f27</id>
<content type='text'>
The Run handler is handled automatically.
</content>
</entry>
</feed>
