dongnelibrary 0.3.4 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -29
- package/dist/cli.js +29 -18
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/my_stars.txt +0 -390
package/README.md
CHANGED
|
@@ -7,64 +7,75 @@
|
|
|
7
7
|
|
|
8
8
|
도서관 이름을 생략하면 모든 도서관을 검색한다.
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Requirements
|
|
11
|
+
|
|
12
|
+
- Node.js >= 22.22.0
|
|
13
|
+
|
|
14
|
+
## Install with git and Run
|
|
11
15
|
|
|
12
16
|
git clone https://github.com/afrontend/dongnelibrary
|
|
13
17
|
cd dongnelibrary
|
|
14
18
|
npm ci
|
|
15
|
-
|
|
19
|
+
npm run build
|
|
16
20
|
|
|
17
|
-
node ./
|
|
18
|
-
node ./
|
|
19
|
-
node ./
|
|
20
|
-
node ./
|
|
21
|
+
node ./dist/cli.js -i
|
|
22
|
+
node ./dist/cli.js -a
|
|
23
|
+
node ./dist/cli.js -t 별 -l 남양
|
|
24
|
+
node ./dist/cli.js -t 별 -l 흥천,판교
|
|
21
25
|
npm test
|
|
22
26
|
|
|
23
|
-
##
|
|
27
|
+
## Install with npm and Run
|
|
24
28
|
|
|
25
29
|
npm install dongnelibrary -g
|
|
26
30
|
dongnelibrary -i
|
|
27
31
|
dongnelibrary -a
|
|
28
|
-
dongnelibrary -t
|
|
29
|
-
dongnelibrary -t
|
|
32
|
+
dongnelibrary -t 별 -l 남양
|
|
33
|
+
dongnelibrary -t 별 -l 흥천,판교
|
|
30
34
|
|
|
31
35
|
[](https://asciinema.org/a/359304)
|
|
32
36
|
|
|
33
|
-
##
|
|
37
|
+
## Run with npx
|
|
38
|
+
|
|
39
|
+
npx dongnelibrary -i
|
|
40
|
+
npx dongnelibrary -a
|
|
41
|
+
npx dongnelibrary -t 별 -l 남양
|
|
42
|
+
npx dongnelibrary -t 별 -l 흥천,판교
|
|
43
|
+
|
|
44
|
+
## Use GitHub Container Registry image
|
|
34
45
|
|
|
35
46
|
### install
|
|
36
47
|
|
|
37
|
-
docker pull
|
|
48
|
+
docker pull ghcr.io/afrontend/dongnelibrary
|
|
38
49
|
|
|
39
50
|
### run examples
|
|
40
51
|
|
|
41
|
-
docker run -it --rm
|
|
42
|
-
docker run --rm
|
|
43
|
-
docker run --rm
|
|
44
|
-
docker run --rm
|
|
52
|
+
docker run -it --rm ghcr.io/afrontend/dongnelibrary -i
|
|
53
|
+
docker run --rm ghcr.io/afrontend/dongnelibrary -a
|
|
54
|
+
docker run --rm ghcr.io/afrontend/dongnelibrary -t 별 -l 남양
|
|
55
|
+
docker run --rm ghcr.io/afrontend/dongnelibrary -t 별 -l 흥천,판교
|
|
45
56
|
|
|
46
57
|
## Build and Run Docker Locally
|
|
47
58
|
|
|
59
|
+
### build
|
|
60
|
+
|
|
48
61
|
docker build -t dongnelibrary .
|
|
62
|
+
|
|
63
|
+
### run examples
|
|
64
|
+
|
|
49
65
|
docker run -it dongnelibrary -i
|
|
50
66
|
docker run dongnelibrary -a
|
|
51
|
-
docker run dongnelibrary -t
|
|
67
|
+
docker run dongnelibrary -t 별 -l "남양"
|
|
68
|
+
docker run dongnelibrary -t 별 -l "흥천,판교"
|
|
52
69
|
docker run -it -v ~/.config/configstore:/root/.config/configstore dongnelibrary -i
|
|
53
70
|
|
|
54
|
-
## Deploy to
|
|
55
|
-
|
|
56
|
-
# Log in to Docker Hub
|
|
57
|
-
docker login
|
|
71
|
+
## Deploy to GitHub Container Registry
|
|
58
72
|
|
|
59
|
-
|
|
60
|
-
docker build -t <dockerhub-username>/dongnelibrary:latest .
|
|
73
|
+
Docker images are automatically published to GitHub Container Registry via GitHub Actions when:
|
|
61
74
|
|
|
62
|
-
|
|
63
|
-
|
|
75
|
+
- Pushing to the `master` branch (tagged as `master`)
|
|
76
|
+
- Creating version tags like `v1.0.0` (tagged with version number)
|
|
64
77
|
|
|
65
|
-
|
|
66
|
-
docker tag <dockerhub-username>/dongnelibrary:latest <dockerhub-username>/dongnelibrary:0.2.12
|
|
67
|
-
docker push <dockerhub-username>/dongnelibrary:0.2.12
|
|
78
|
+
No manual deployment steps are required. The workflow handles authentication using `GITHUB_TOKEN`.
|
|
68
79
|
|
|
69
80
|
## Using with JavaScript
|
|
70
81
|
|
|
@@ -120,10 +131,11 @@ console.log(results.length + " 개의 도서관을 검색했습니다.");
|
|
|
120
131
|
- [화성시립도서관][hscity-url] (남양도서관,태안도서관,삼괴도서관,병점도서관,샘내도서관,두빛나래어린이도서관,봉담도서관,둥지나래어린이도서관,목동이음터도서관,기아행복마루도서관,화성동탄중앙도서관,송산도서관,정남도서관,비봉도서관,진안도서관,중앙이음터도서관,양감도서관,다원이음터도서관,송린이음터도서관,팔탄도서관,마도도서관,봉담커피앤북도서관,왕배푸른숲도서관,노을빛도서관,서연이음터도서관,호연이음터도서관,향남복합문화센터도서관,봉담와우도서관,늘봄이음터도서관,달빛나래어린이도서관)
|
|
121
132
|
- [수원시도서관][suwon-url] (선경도서관,수원중앙도서관,창룡도서관,화서다산도서관,호매실도서관,서수원도서관,한림도서관,버드내도서관,북수원도서관,대추골도서관,일월도서관,광교홍재도서관,태장마루도서관,광교푸른숲도서관,매여울도서관,망포글빛도서관,슬기샘도서관,지혜샘어린이도서관,바른샘어린이도서관,한아름도서관,반달어린이도서관,사랑샘도서관,희망샘도서관)
|
|
122
133
|
- [용인시도서관][yongin-url] (수지도서관,구성도서관,기흥도서관,남사도서관,동백도서관,동천도서관,모현도서관,보라도서관,상현도서관,서농도서관,성복도서관,용인중앙도서관,양지해밀도서관,영덕도서관,죽전도서관,청덕도서관,포곡도서관,흥덕도서관)
|
|
134
|
+
- [여주시립도서관][yjlib-url] (여주도서관,세종도서관,점동도서관,여주기적의도서관,흥천도서관,금사도서관,대신도서관,산북작은도서관,북내작은도서관,여주역스마트도서관,이마트스마트도서관)
|
|
123
135
|
|
|
124
136
|
## 마무리
|
|
125
137
|
|
|
126
|
-
|
|
138
|
+
설치 대신 [웹 서비스][web-ui-url]를 사용할 수 있다.
|
|
127
139
|
[Web API 서비스][web-api]도 지원한다.
|
|
128
140
|
|
|
129
141
|
## Test
|
|
@@ -136,6 +148,7 @@ console.log(results.length + " 개의 도서관을 검색했습니다.");
|
|
|
136
148
|
npm run osan # 오산시 도서관
|
|
137
149
|
npm run snlib # 성남시 도서관
|
|
138
150
|
npm run suwon # 수원시 도서관
|
|
151
|
+
npm run yjlib # 여주시 도서관
|
|
139
152
|
npm run yongin # 용인시 도서관
|
|
140
153
|
|
|
141
154
|
[dongnelibraryspa]: https://github.com/afrontend/dongnelibraryspa "AngularJS, Foundation을 사용한 Web UI"
|
|
@@ -150,4 +163,4 @@ console.log(results.length + " 개의 도서관을 검색했습니다.");
|
|
|
150
163
|
[snlib-url]: https://www.snlib.go.kr
|
|
151
164
|
[suwon-url]: https://www.suwonlib.go.kr
|
|
152
165
|
[yongin-url]: https://lib.yongin.go.kr
|
|
153
|
-
[
|
|
166
|
+
[yjlib-url]: https://www.yjlib.go.kr
|
package/dist/cli.js
CHANGED
|
@@ -49,6 +49,15 @@ const pkg = require("../package.json");
|
|
|
49
49
|
// Constants
|
|
50
50
|
const DEFAULT_TITLE = "javascript";
|
|
51
51
|
const LIBRARY_SUFFIX = "도서관";
|
|
52
|
+
/** UI messages */
|
|
53
|
+
const MESSAGES = {
|
|
54
|
+
cancelSearch: "검색 취소 중...",
|
|
55
|
+
libraryCount: (count) => `모두 ${count} 개의 도서관`,
|
|
56
|
+
searchSummary: (libs, books) => `${libs} 개의 도서관에서 ${books} 권 검색됨`,
|
|
57
|
+
promptLibrary: "도서관 이름은?",
|
|
58
|
+
promptTitle: "책 이름은?",
|
|
59
|
+
unknownError: "Unknown Error",
|
|
60
|
+
};
|
|
52
61
|
const conf = new configstore_1.default(pkg.name, {});
|
|
53
62
|
/** Configuration helpers for persistent storage */
|
|
54
63
|
const config = {
|
|
@@ -102,7 +111,7 @@ const printBooks = ({ booklist }) => {
|
|
|
102
111
|
const printAllLibraryNames = () => {
|
|
103
112
|
const libs = dl.getLibraryNames();
|
|
104
113
|
libs.forEach((name) => console.log(name));
|
|
105
|
-
console.log(colors_1.default.green(
|
|
114
|
+
console.log(colors_1.default.green(MESSAGES.libraryCount(libs.length)));
|
|
106
115
|
};
|
|
107
116
|
/**
|
|
108
117
|
* Find full library name from partial string.
|
|
@@ -117,11 +126,20 @@ const getBookCount = (results) => results.reduce((sum, book) => sum + (book?.boo
|
|
|
117
126
|
*/
|
|
118
127
|
const getLibraryFullNameList = (libraryName) => util
|
|
119
128
|
.getArrayFromCommaSeparatedString(libraryName)
|
|
120
|
-
.
|
|
129
|
+
.map((name) => getFullLibraryName(name) || "")
|
|
130
|
+
.filter((name) => name);
|
|
121
131
|
/**
|
|
122
|
-
*
|
|
132
|
+
* Set up SIGINT handler for graceful cancellation.
|
|
133
|
+
* Returns cleanup function to remove the listener.
|
|
123
134
|
*/
|
|
124
|
-
const
|
|
135
|
+
const setupCancellation = (onCancel) => {
|
|
136
|
+
const handler = () => {
|
|
137
|
+
console.log("\n" + colors_1.default.yellow(MESSAGES.cancelSearch));
|
|
138
|
+
onCancel();
|
|
139
|
+
};
|
|
140
|
+
process.once("SIGINT", handler);
|
|
141
|
+
return () => process.removeListener("SIGINT", handler);
|
|
142
|
+
};
|
|
125
143
|
/**
|
|
126
144
|
* Search libraries for books and print results.
|
|
127
145
|
* Supports graceful cancellation with Ctrl+C.
|
|
@@ -129,26 +147,19 @@ const getLibraries = (libraryName) => libraryName ? getLibraryFullNameList(libra
|
|
|
129
147
|
const searchBooks = ({ title, libraryName, }) => new Promise((resolve) => {
|
|
130
148
|
const controller = new AbortController();
|
|
131
149
|
const results = [];
|
|
132
|
-
|
|
133
|
-
const handleSigint = () => {
|
|
134
|
-
console.log("\n" + colors_1.default.yellow("검색 취소 중..."));
|
|
135
|
-
controller.abort();
|
|
136
|
-
};
|
|
137
|
-
process.once("SIGINT", handleSigint);
|
|
150
|
+
const cleanup = setupCancellation(() => controller.abort());
|
|
138
151
|
dl.search({ title, libraryName, signal: controller.signal }, (err, book) => {
|
|
139
152
|
if (err) {
|
|
140
|
-
// Silently ignore abort errors
|
|
141
153
|
if (err.msg?.toLowerCase().includes("abort"))
|
|
142
154
|
return;
|
|
143
|
-
console.log(err.msg ??
|
|
155
|
+
console.log(err.msg ?? MESSAGES.unknownError);
|
|
144
156
|
}
|
|
145
157
|
else if (book) {
|
|
146
158
|
printBooks(book);
|
|
147
159
|
results.push(book);
|
|
148
160
|
}
|
|
149
161
|
}, () => {
|
|
150
|
-
|
|
151
|
-
process.removeListener("SIGINT", handleSigint);
|
|
162
|
+
cleanup();
|
|
152
163
|
resolve(results);
|
|
153
164
|
});
|
|
154
165
|
});
|
|
@@ -157,7 +168,7 @@ const searchBooks = ({ title, libraryName, }) => new Promise((resolve) => {
|
|
|
157
168
|
*/
|
|
158
169
|
const printSearchSummary = (results) => {
|
|
159
170
|
const bookCount = getBookCount(results);
|
|
160
|
-
console.log(colors_1.default.green(
|
|
171
|
+
console.log(colors_1.default.green(MESSAGES.searchSummary(results.length, bookCount)));
|
|
161
172
|
};
|
|
162
173
|
/**
|
|
163
174
|
* Interactive prompt for search options using inquirer.
|
|
@@ -165,12 +176,12 @@ const printSearchSummary = (results) => {
|
|
|
165
176
|
const promptForSearchOptions = async () => {
|
|
166
177
|
introMessage("Dongne Library");
|
|
167
178
|
const library = await (0, prompts_1.select)({
|
|
168
|
-
message:
|
|
179
|
+
message: MESSAGES.promptLibrary,
|
|
169
180
|
choices: dl.getLibraryNames().map((name) => ({ name, value: name })),
|
|
170
181
|
default: config.getLibrary(),
|
|
171
182
|
});
|
|
172
183
|
const title = await (0, prompts_1.input)({
|
|
173
|
-
message:
|
|
184
|
+
message: MESSAGES.promptTitle,
|
|
174
185
|
default: config.getTitle(),
|
|
175
186
|
});
|
|
176
187
|
config.setLibrary(library);
|
|
@@ -190,7 +201,7 @@ const activate = async () => {
|
|
|
190
201
|
searchOptions = await promptForSearchOptions();
|
|
191
202
|
}
|
|
192
203
|
else if (libraryName && title) {
|
|
193
|
-
searchOptions = { title, libraryName };
|
|
204
|
+
searchOptions = { title, libraryName: getLibraryFullNameList(libraryName) };
|
|
194
205
|
}
|
|
195
206
|
else if (title) {
|
|
196
207
|
searchOptions = { title, libraryName: "" };
|
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/my_stars.txt
DELETED
|
@@ -1,390 +0,0 @@
|
|
|
1
|
-
https://github.com/exo-explore/exo
|
|
2
|
-
https://github.com/hesreallyhim/awesome-claude-code
|
|
3
|
-
https://github.com/daphnecode/TaskMate
|
|
4
|
-
https://github.com/whyisdifficult/jiratui
|
|
5
|
-
https://github.com/codecrafters-io/build-your-own-x
|
|
6
|
-
https://github.com/ArthurSonzogni/Diagon
|
|
7
|
-
https://github.com/linkarzu/dotfiles-latest
|
|
8
|
-
https://github.com/hedyhli/outline.nvim
|
|
9
|
-
https://github.com/jrmoulton/tmux-sessionizer
|
|
10
|
-
https://github.com/rickiepark/deep-learning-with-python-2nd
|
|
11
|
-
https://github.com/dstein64/nvim-scrollview
|
|
12
|
-
https://github.com/jtroo/kanata
|
|
13
|
-
https://github.com/stevearc/oil.nvim
|
|
14
|
-
https://github.com/hrsh7th/cmp-nvim-lsp
|
|
15
|
-
https://github.com/nvimtools/none-ls.nvim
|
|
16
|
-
https://github.com/catppuccin/nvim
|
|
17
|
-
https://github.com/nchudleigh/vimac
|
|
18
|
-
https://github.com/SortableJS/Sortable
|
|
19
|
-
https://github.com/placemark/placemark
|
|
20
|
-
https://github.com/Everduin94/better-commits
|
|
21
|
-
https://github.com/schedule-x/schedule-x
|
|
22
|
-
https://github.com/srikanth235/privy
|
|
23
|
-
https://github.com/dineug/erd-editor
|
|
24
|
-
https://github.com/CopilotKit/CopilotKit
|
|
25
|
-
https://github.com/wallabag/wallabag
|
|
26
|
-
https://github.com/Portkey-AI/gateway
|
|
27
|
-
https://github.com/markslides/markslides
|
|
28
|
-
https://github.com/YS-L/csvlens
|
|
29
|
-
https://github.com/tconbeer/harlequin
|
|
30
|
-
https://github.com/cboxdoerfer/fsearch
|
|
31
|
-
https://github.com/microsoft/Mastering-GitHub-Copilot-for-Paired-Programming
|
|
32
|
-
https://github.com/alexandrehtrb/Pororoca
|
|
33
|
-
https://github.com/standard-webhooks/standard-webhooks
|
|
34
|
-
https://github.com/joshmarinacci/node-pureimage
|
|
35
|
-
https://github.com/vscode-neovim/vscode-multi-cursor.nvim
|
|
36
|
-
https://github.com/Elevista/tswagger
|
|
37
|
-
https://github.com/datalab-to/marker
|
|
38
|
-
https://github.com/arcataroger/awesome-engineering-games
|
|
39
|
-
https://github.com/openinterpreter/open-interpreter
|
|
40
|
-
https://github.com/WegraLee/deep-learning-from-scratch
|
|
41
|
-
https://github.com/ekzhang/sshx
|
|
42
|
-
https://github.com/contour-terminal/contour
|
|
43
|
-
https://github.com/bensadeh/tailspin
|
|
44
|
-
https://github.com/Giskard-AI/giskard-oss
|
|
45
|
-
https://github.com/honojs/hono
|
|
46
|
-
https://github.com/google/zx
|
|
47
|
-
https://github.com/revertinc/revert
|
|
48
|
-
https://github.com/navorite/sessionic
|
|
49
|
-
https://github.com/google/typograms
|
|
50
|
-
https://github.com/mohamed-chs/convoviz
|
|
51
|
-
https://github.com/Dicklesworthstone/automatic_log_collector_and_analyzer
|
|
52
|
-
https://github.com/lotusdblabs/lotusdb
|
|
53
|
-
https://github.com/Dataherald/dataherald
|
|
54
|
-
https://github.com/exogee-technology/graphweaver
|
|
55
|
-
https://github.com/obra/Youtube2Webpage
|
|
56
|
-
https://github.com/YavorGIvanov/sam.cpp
|
|
57
|
-
https://github.com/puckeditor/puck
|
|
58
|
-
https://github.com/btpf/Alexandria
|
|
59
|
-
https://github.com/sweepai/sweep
|
|
60
|
-
https://github.com/lllyasviel/Fooocus
|
|
61
|
-
https://github.com/clockworklabs/SpacetimeDB
|
|
62
|
-
https://github.com/HHHMHA/django-roadmap
|
|
63
|
-
https://github.com/absadiki/subsai
|
|
64
|
-
https://github.com/langgenius/dify
|
|
65
|
-
https://github.com/getzep/zep
|
|
66
|
-
https://github.com/mquan/api2ai
|
|
67
|
-
https://github.com/mayooear/ai-pdf-chatbot-langchain
|
|
68
|
-
https://github.com/little-brother/sqlite-gui
|
|
69
|
-
https://github.com/vim-scripts/DrawIt
|
|
70
|
-
https://github.com/NomaDamas/KICE_slayer_AI_Korean
|
|
71
|
-
https://github.com/lucavallin/barco
|
|
72
|
-
https://github.com/livecycle/preevy
|
|
73
|
-
https://github.com/hyperonym/basaran
|
|
74
|
-
https://github.com/michael/editable-website
|
|
75
|
-
https://github.com/ankane/mapkick.js
|
|
76
|
-
https://github.com/RahulSChand/llama2.c-for-dummies
|
|
77
|
-
https://github.com/ThousandBirdsInc/chidori
|
|
78
|
-
https://github.com/cozodb/cozo
|
|
79
|
-
https://github.com/getgrav/grav
|
|
80
|
-
https://github.com/shroominic/codeinterpreter-api
|
|
81
|
-
https://github.com/novuhq/novu
|
|
82
|
-
https://github.com/Forethought-Technologies/AutoChain
|
|
83
|
-
https://github.com/dabeaz-course/python-mastery
|
|
84
|
-
https://github.com/GRVYDEV/S.A.T.U.R.D.A.Y
|
|
85
|
-
https://github.com/vitoplantamura/OnnxStream
|
|
86
|
-
https://github.com/highlight/highlight
|
|
87
|
-
https://github.com/a16z-infra/companion-app
|
|
88
|
-
https://github.com/Shelf-nu/shelf.nu
|
|
89
|
-
https://github.com/sdan/vlite
|
|
90
|
-
https://github.com/toeverything/AFFiNE
|
|
91
|
-
https://github.com/pauldreik/rdfind
|
|
92
|
-
https://github.com/0hq/tinyvector
|
|
93
|
-
https://github.com/mbzuai-oryx/XrayGPT
|
|
94
|
-
https://github.com/aidenybai/million
|
|
95
|
-
https://github.com/kkuchta/css-only-chat
|
|
96
|
-
https://github.com/imgly/background-removal-js
|
|
97
|
-
https://github.com/MihanEntalpo/cryptboard.io
|
|
98
|
-
https://github.com/belladoreai/llama-tokenizer-js
|
|
99
|
-
https://github.com/vriteio/vrite
|
|
100
|
-
https://github.com/binpash/try
|
|
101
|
-
https://github.com/xavi-/node-copy-paste
|
|
102
|
-
https://github.com/formkit/auto-animate
|
|
103
|
-
https://github.com/flowdriveai/flowpilot
|
|
104
|
-
https://github.com/undb-io/undb
|
|
105
|
-
https://github.com/AntonOsika/gpt-engineer
|
|
106
|
-
https://github.com/Yerbert/DingoQuadruped
|
|
107
|
-
https://github.com/bentoml/OpenLLM
|
|
108
|
-
https://github.com/s0md3v/roop
|
|
109
|
-
https://github.com/k1LoW/tbls
|
|
110
|
-
https://github.com/ajndkr/lanarky
|
|
111
|
-
https://github.com/algolia/autocomplete
|
|
112
|
-
https://github.com/reactive-python/reactpy
|
|
113
|
-
https://github.com/jart/blink
|
|
114
|
-
https://github.com/composite/awesome-jsx
|
|
115
|
-
https://github.com/lance-format/lance
|
|
116
|
-
https://github.com/kochrt/qr-designer
|
|
117
|
-
https://github.com/makeplane/plane
|
|
118
|
-
https://github.com/kreneskyp/ix
|
|
119
|
-
https://github.com/NotJoeMartinez/yt-fts
|
|
120
|
-
https://github.com/bytecodealliance/javy
|
|
121
|
-
https://github.com/Blazity/next-enterprise
|
|
122
|
-
https://github.com/superagent-ai/superagent
|
|
123
|
-
https://github.com/ricklamers/gpt-code-ui
|
|
124
|
-
https://github.com/wezterm/wezterm
|
|
125
|
-
https://github.com/zylon-ai/private-gpt
|
|
126
|
-
https://github.com/OFA-Sys/ONE-PEACE
|
|
127
|
-
https://github.com/FlowiseAI/Flowise
|
|
128
|
-
https://github.com/smol-ai/developer
|
|
129
|
-
https://github.com/guidance-ai/guidance
|
|
130
|
-
https://github.com/HeyWillow/willow
|
|
131
|
-
https://github.com/ray-project/llm-numbers
|
|
132
|
-
https://github.com/dogu-team/gamium
|
|
133
|
-
https://github.com/bitcoin/bitcoin
|
|
134
|
-
https://github.com/brexhq/prompt-engineering
|
|
135
|
-
https://github.com/r2d4/openlm
|
|
136
|
-
https://github.com/gridstack/gridstack.js
|
|
137
|
-
https://github.com/mlc-ai/mlc-llm
|
|
138
|
-
https://github.com/gmpetrov/databerry
|
|
139
|
-
https://github.com/openlm-research/open_llama
|
|
140
|
-
https://github.com/lamini-ai/lamini
|
|
141
|
-
https://github.com/jkfran/killport
|
|
142
|
-
https://github.com/BuilderIO/SSDiff
|
|
143
|
-
https://github.com/h2oai/h2ogpt
|
|
144
|
-
https://github.com/editablejs/editable
|
|
145
|
-
https://github.com/griptape-ai/griptape
|
|
146
|
-
https://github.com/ArroyoSystems/arroyo
|
|
147
|
-
https://github.com/antvis/S2
|
|
148
|
-
https://github.com/mlc-ai/web-llm
|
|
149
|
-
https://github.com/ravenscroftj/turbopilot
|
|
150
|
-
https://github.com/cowtoolz/tachyon
|
|
151
|
-
https://github.com/facebookresearch/AnimatedDrawings
|
|
152
|
-
https://github.com/grpc/grpc-web
|
|
153
|
-
https://github.com/hocus-dev/hocus
|
|
154
|
-
https://github.com/langflow-ai/langflow
|
|
155
|
-
https://github.com/sqshq/sampler
|
|
156
|
-
https://github.com/e2b-dev/E2B
|
|
157
|
-
https://github.com/perspective-dev/perspective
|
|
158
|
-
https://github.com/leetcode-mafia/cheetah
|
|
159
|
-
https://github.com/pandas-dev/pandas
|
|
160
|
-
https://github.com/stochasticai/xTuring
|
|
161
|
-
https://github.com/Lightning-AI/lit-llama
|
|
162
|
-
https://github.com/Picsart-AI-Research/Text2Video-Zero
|
|
163
|
-
https://github.com/ouch-org/ouch
|
|
164
|
-
https://github.com/cursor/cursor
|
|
165
|
-
https://github.com/lucaong/minisearch
|
|
166
|
-
https://github.com/hectorm/otpauth
|
|
167
|
-
https://github.com/typst/typst
|
|
168
|
-
https://github.com/darkroomengineering/lenis
|
|
169
|
-
https://github.com/sandworm-hq/sandworm-audit
|
|
170
|
-
https://github.com/mathesar-foundation/mathesar
|
|
171
|
-
https://github.com/thoughtspile/awesome-tiny-js
|
|
172
|
-
https://github.com/konstaui/konsta
|
|
173
|
-
https://github.com/pulsejet/memories
|
|
174
|
-
https://github.com/mukulpatnaik/researchgpt
|
|
175
|
-
https://github.com/zackees/transcribe-anything
|
|
176
|
-
https://github.com/Cvaniak/NoteSH
|
|
177
|
-
https://github.com/cfortuner/promptable
|
|
178
|
-
https://github.com/FMInference/FlexLLMGen
|
|
179
|
-
https://github.com/robinmoisson/staticrypt
|
|
180
|
-
https://github.com/keephq/keep
|
|
181
|
-
https://github.com/slawlor/ractor
|
|
182
|
-
https://github.com/sger/RustBooks
|
|
183
|
-
https://github.com/groundcover-com/caretta
|
|
184
|
-
https://github.com/Heptite/HTML
|
|
185
|
-
https://github.com/triggerdotdev/trigger.dev
|
|
186
|
-
https://github.com/pocketpy/pocketpy
|
|
187
|
-
https://github.com/schibsted/WAAS
|
|
188
|
-
https://github.com/initialcommit-com/git-sim
|
|
189
|
-
https://github.com/cashapp/hermit
|
|
190
|
-
https://github.com/automatisch/automatisch
|
|
191
|
-
https://github.com/fathyb/carbonyl
|
|
192
|
-
https://github.com/brycedrennan/imaginAIry
|
|
193
|
-
https://github.com/klothoplatform/klotho
|
|
194
|
-
https://github.com/philc/vimium
|
|
195
|
-
https://github.com/SpartanJ/ecode
|
|
196
|
-
https://github.com/Kanaries/graphic-walker
|
|
197
|
-
https://github.com/cheat/cheat
|
|
198
|
-
https://github.com/ZSWatch/ZSWatch
|
|
199
|
-
https://github.com/GimelStudio/GimelStudio
|
|
200
|
-
https://github.com/nikvdp/pbproxy
|
|
201
|
-
https://github.com/karpathy/nanoGPT
|
|
202
|
-
https://github.com/twisted/twisted
|
|
203
|
-
https://github.com/bigscience-workshop/petals
|
|
204
|
-
https://github.com/Shopify/hydrogen-v1
|
|
205
|
-
https://github.com/wong2/chatgpt-google-extension
|
|
206
|
-
https://github.com/openai/openai-cookbook
|
|
207
|
-
https://github.com/facebook/flow
|
|
208
|
-
https://github.com/skt-t1-byungi/use-simple-store
|
|
209
|
-
https://github.com/feathersjs/feathers
|
|
210
|
-
https://github.com/nvbn/thefuck
|
|
211
|
-
https://github.com/microsoft/typespec
|
|
212
|
-
https://github.com/skypilot-org/skypilot
|
|
213
|
-
https://github.com/alefragnani/vscode-bookmarks
|
|
214
|
-
https://github.com/jwilber/roughViz
|
|
215
|
-
https://github.com/sinclairzx81/zero
|
|
216
|
-
https://github.com/kognise/water.css
|
|
217
|
-
https://github.com/refined-github/refined-github
|
|
218
|
-
https://github.com/troxler/awesome-css-frameworks
|
|
219
|
-
https://github.com/AgnosticUI/agnosticui
|
|
220
|
-
https://github.com/beercss/beercss
|
|
221
|
-
https://github.com/winkjs/wink-nlp
|
|
222
|
-
https://github.com/kickstartDS/kickstartDS
|
|
223
|
-
https://github.com/runfinch/finch
|
|
224
|
-
https://github.com/peers/peerjs
|
|
225
|
-
https://github.com/captbaritone/webamp
|
|
226
|
-
https://github.com/GoogleChrome/chrome-extensions-samples
|
|
227
|
-
https://github.com/channy/korea-devculture
|
|
228
|
-
https://github.com/sindresorhus/is
|
|
229
|
-
https://github.com/mzur/gnome-shell-wsmatrix
|
|
230
|
-
https://github.com/jeffhhk/SoftwareDesignForFlexibility
|
|
231
|
-
https://github.com/swagger-api/swagger-codegen
|
|
232
|
-
https://github.com/jspreddy/node-cli-boilerplate
|
|
233
|
-
https://github.com/KyleAMathews/element-resize-event
|
|
234
|
-
https://github.com/tone-row/flowchart-fun
|
|
235
|
-
https://github.com/Esteban-Rocha/page-ruler-redux
|
|
236
|
-
https://github.com/rome/tools
|
|
237
|
-
https://github.com/nnethercote/perf-book
|
|
238
|
-
https://github.com/fureweb-com/public-google-sheets-parser
|
|
239
|
-
https://github.com/rainywalker/footNotes
|
|
240
|
-
https://github.com/dittos/diffmonster
|
|
241
|
-
https://github.com/welldone-software/why-did-you-render
|
|
242
|
-
https://github.com/preactjs/preact
|
|
243
|
-
https://github.com/greensock/GSAP
|
|
244
|
-
https://github.com/forwardemail/superagent
|
|
245
|
-
https://github.com/craigmulligan/js-fire
|
|
246
|
-
https://github.com/moleculerjs/moleculer
|
|
247
|
-
https://github.com/typelevel/cats
|
|
248
|
-
https://github.com/wtfutil/wtf
|
|
249
|
-
https://github.com/onury/docma
|
|
250
|
-
https://github.com/electron/fiddle
|
|
251
|
-
https://github.com/WICG/portals
|
|
252
|
-
https://github.com/Ulauncher/Ulauncher
|
|
253
|
-
https://github.com/acode/FunctionScript
|
|
254
|
-
https://github.com/sinedied/smoke
|
|
255
|
-
https://github.com/analysis-tools-dev/static-analysis
|
|
256
|
-
https://github.com/h2ero/XEasyMotion
|
|
257
|
-
https://github.com/race2infinity/The-Documentation-Compendium
|
|
258
|
-
https://github.com/StephenMcMillan/Dub-Dub-Do
|
|
259
|
-
https://github.com/agarrharr/awesome-cli-apps
|
|
260
|
-
https://github.com/glennrfisher/introduction-to-functional-programming
|
|
261
|
-
https://github.com/jroimartin/gocui
|
|
262
|
-
https://github.com/jesseduffield/lazydocker
|
|
263
|
-
https://github.com/ehmicky/gulp-execa
|
|
264
|
-
https://github.com/JoshMarler/react-juce
|
|
265
|
-
https://github.com/APIs-guru/graphql-apis
|
|
266
|
-
https://github.com/fanatid/jsyesql
|
|
267
|
-
https://github.com/dai-shi/react-tracked
|
|
268
|
-
https://github.com/rafaelrinaldi/hn-cli
|
|
269
|
-
https://github.com/sindresorhus/awesome-nodejs
|
|
270
|
-
https://github.com/rkoval/alfred-aws-console-services-workflow
|
|
271
|
-
https://github.com/egoist/bili
|
|
272
|
-
https://github.com/lukeed/pwa
|
|
273
|
-
https://github.com/you-dont-need/You-Dont-Need-JavaScript
|
|
274
|
-
https://github.com/neoclide/coc-snippets
|
|
275
|
-
https://github.com/SidOfc/dotfiles
|
|
276
|
-
https://github.com/BurntSushi/ripgrep
|
|
277
|
-
https://github.com/ranger/ranger
|
|
278
|
-
https://github.com/connors/photon
|
|
279
|
-
https://github.com/ifandelse/machina.js
|
|
280
|
-
https://github.com/syaning/awesome-frontend
|
|
281
|
-
https://github.com/1995eaton/chromium-vim
|
|
282
|
-
https://github.com/laravel/dusk
|
|
283
|
-
https://github.com/octalmage/robotjs
|
|
284
|
-
https://github.com/jerryscript-project/jerryscript
|
|
285
|
-
https://github.com/naver/fe-news
|
|
286
|
-
https://github.com/stereobooster/react-snap
|
|
287
|
-
https://github.com/codeunion/dotenv-example
|
|
288
|
-
https://github.com/nuxt-modules/style-resources
|
|
289
|
-
https://github.com/cometkim/gatsby-plugin-typegen
|
|
290
|
-
https://github.com/briskml/brisk
|
|
291
|
-
https://github.com/onivim/oni2
|
|
292
|
-
https://github.com/yona-projects/yona
|
|
293
|
-
https://github.com/shzlw/poli
|
|
294
|
-
https://github.com/mui/material-ui
|
|
295
|
-
https://github.com/mock-server/mockserver
|
|
296
|
-
https://github.com/oslabs-beta/protographql
|
|
297
|
-
https://github.com/lsongdev/node-bluetooth
|
|
298
|
-
https://github.com/flashphoner/flashphoner_client
|
|
299
|
-
https://github.com/nodejs/llhttp
|
|
300
|
-
https://github.com/entropic-dev/entropic
|
|
301
|
-
https://github.com/mdbootstrap/TW-Elements
|
|
302
|
-
https://github.com/joshwcomeau/guppy
|
|
303
|
-
https://github.com/webrtc/testrtc
|
|
304
|
-
https://github.com/microsoft/cascadia-code
|
|
305
|
-
https://github.com/skt-t1-byungi/fastcampus-downloader
|
|
306
|
-
https://github.com/dbalatero/VimMode.spoon
|
|
307
|
-
https://github.com/doczjs/docz
|
|
308
|
-
https://github.com/pimterry/loglevel
|
|
309
|
-
https://github.com/commitizen/cz-cli
|
|
310
|
-
https://github.com/ruffle-rs/ruffle
|
|
311
|
-
https://github.com/goldbergyoni/javascript-testing-best-practices
|
|
312
|
-
https://github.com/herebefrogs/submersible-warship-2063
|
|
313
|
-
https://github.com/szwacz/electron-boilerplate
|
|
314
|
-
https://github.com/skt-t1-byungi/use-interpolate
|
|
315
|
-
https://github.com/sindresorhus/awesome-electron
|
|
316
|
-
https://github.com/sindresorhus/generator-nm
|
|
317
|
-
https://github.com/kilimchoi/engineering-blogs
|
|
318
|
-
https://github.com/JKHeadley/rest-hapi
|
|
319
|
-
https://github.com/appium/appium-desktop
|
|
320
|
-
https://github.com/facebook/react-devtools
|
|
321
|
-
https://github.com/github/hotkey
|
|
322
|
-
https://github.com/baconjs/bacon.js
|
|
323
|
-
https://github.com/karatelabs/karate
|
|
324
|
-
https://github.com/previm/previm
|
|
325
|
-
https://github.com/react-cosmos/react-cosmos
|
|
326
|
-
https://github.com/uchangFD/tetris
|
|
327
|
-
https://github.com/goldenthumb/tetris-core
|
|
328
|
-
https://github.com/Raathigesh/dazzle
|
|
329
|
-
https://github.com/alex/what-happens-when
|
|
330
|
-
https://github.com/go-resty/resty
|
|
331
|
-
https://github.com/enquirer/enquirer
|
|
332
|
-
https://github.com/tj/commander.js
|
|
333
|
-
https://github.com/restify/node-restify
|
|
334
|
-
https://github.com/winstonjs/winston
|
|
335
|
-
https://github.com/adaltas/node-csv
|
|
336
|
-
https://github.com/validatorjs/validator.js
|
|
337
|
-
https://github.com/yangshun/front-end-interview-handbook
|
|
338
|
-
https://github.com/moncho/dry
|
|
339
|
-
https://github.com/skt-t1-byungi/inno-trans
|
|
340
|
-
https://github.com/teambit/bit
|
|
341
|
-
https://github.com/debauchee/barrier
|
|
342
|
-
https://github.com/h5bp/Front-end-Developer-Interview-Questions
|
|
343
|
-
https://github.com/alebcay/awesome-shell
|
|
344
|
-
https://github.com/herrbischoff/awesome-command-line-apps
|
|
345
|
-
https://github.com/trekhleb/javascript-algorithms
|
|
346
|
-
https://github.com/Chalarangelo/30-seconds-of-code
|
|
347
|
-
https://github.com/jordansissel/keynav
|
|
348
|
-
https://github.com/wasm-bindgen/wasm-bindgen
|
|
349
|
-
https://github.com/markusenglund/react-kanban
|
|
350
|
-
https://github.com/compat-table/compat-table
|
|
351
|
-
https://github.com/paperjs/paper.js
|
|
352
|
-
https://github.com/eligrey/FileSaver.js
|
|
353
|
-
https://github.com/facebook/PathPicker
|
|
354
|
-
https://github.com/babel/babel-eslint
|
|
355
|
-
https://github.com/rndme/download
|
|
356
|
-
https://github.com/realworld-apps/realworld
|
|
357
|
-
https://github.com/bnb/awesome-hyper
|
|
358
|
-
https://github.com/wesbos/JavaScript30
|
|
359
|
-
https://github.com/naugtur/xhr
|
|
360
|
-
https://github.com/joshbuchea/HEAD
|
|
361
|
-
https://github.com/jesse-blake/text-maze
|
|
362
|
-
https://github.com/dkraczkowski/dom.js
|
|
363
|
-
https://github.com/microjs/microjs.com
|
|
364
|
-
https://github.com/project-generator/project_generator
|
|
365
|
-
https://github.com/jwasham/coding-interview-university
|
|
366
|
-
https://github.com/impressivewebs/frontend-feeds
|
|
367
|
-
https://github.com/smblott-github/text-aid-too
|
|
368
|
-
https://github.com/hackjutsu/Lepton
|
|
369
|
-
https://github.com/cookiecutter/cookiecutter
|
|
370
|
-
https://github.com/guard/guard
|
|
371
|
-
https://github.com/viewvc/viewvc
|
|
372
|
-
https://github.com/BoostIO/BoostNote-Legacy
|
|
373
|
-
https://github.com/fczbkk/css-selector-generator
|
|
374
|
-
https://github.com/busypeoples/functional-programming-javascript
|
|
375
|
-
https://github.com/MostlyAdequate/mostly-adequate-guide
|
|
376
|
-
https://github.com/utilForever/game-developer-roadmap
|
|
377
|
-
https://github.com/TomasTomecek/sen
|
|
378
|
-
https://github.com/ericchiang/pup
|
|
379
|
-
https://github.com/orbitbot/chrome-extensions-examples
|
|
380
|
-
https://github.com/tabatkins/railroad-diagrams
|
|
381
|
-
https://github.com/kamranahmedse/developer-roadmap
|
|
382
|
-
https://github.com/Suor/funcy
|
|
383
|
-
https://github.com/kdeldycke/awesome-falsehood
|
|
384
|
-
https://github.com/sheerun/vim-polyglot
|
|
385
|
-
https://github.com/EbookFoundation/free-programming-books
|
|
386
|
-
https://github.com/plopjs/plop
|
|
387
|
-
https://github.com/jakesgordon/javascript-state-machine
|
|
388
|
-
https://github.com/reorx/httpstat
|
|
389
|
-
https://github.com/thednp/kute.js
|
|
390
|
-
https://github.com/jondot/awesome-weekly
|