Skip to content

Commit ddd3b98

Browse files
committed
init
0 parents  commit ddd3b98

File tree

107 files changed

+15774
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+15774
-0
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# SeekCode
2+
3+
[![Website](https://img.shields.io/badge/Website-seekrays.com-blue)](https://seekrays.com/seekcode/)
4+
5+
## Download
6+
7+
### macOS
8+
- [Apple Silicon (M1/M2/M3)](https://seekrays.com/seekcode/download?t=macos_aarch64)
9+
- [Intel Mac](https://seekrays.com/seekcode/download?t=macos_x64)
10+
11+
### Windows
12+
- [Setup Installer (x64)](https://seekrays.com/seekcode/download?t=windows_setup)
13+
- [MSI Package (x64)](https://seekrays.com/seekcode/download?t=windows_msi)
14+
15+
## Introduction
16+
17+
SeekCode is a modern desktop app for code management. It combines efficient code snippet organization with clipboard management, featuring tag-based search, syntax highlighting, and seamless clipboard-to-snippet conversion.
18+
19+
## Features
20+
21+
- **Code Snippet Management**: Store and organize code snippets for multiple programming languages with syntax highlighting and tagging support
22+
- **Smart Search**: Quickly search and filter code snippets with powerful tag-based capabilities
23+
- **Clipboard Integration**: Support one-click storage from clipboard to code snippets
24+
- **Multi-Language Support**: Support for JavaScript, TypeScript, Python, Rust, Go, and many other programming languages
25+
- **Theme Switching**: Support for light, dark themes and automatic system theme following
26+
- **Cross-Platform**: Available for macOS and Windows with native performance and system integration
27+
28+
## Screenshots
29+
30+
### Code Snippets Management
31+
![Code Snippets Interface](https://public-1251960616.cos.ap-nanjing.myqcloud.com/images/code-snippets.png)
32+
33+
### Clipboard Integration
34+
![Clipboard History Interface](https://public-1251960616.cos.ap-nanjing.myqcloud.com/images/clipboard.png)
35+
36+
### Tag-based Search
37+
![Tag Search](https://public-1251960616.cos.ap-nanjing.myqcloud.com/images/tags.png)
38+
39+
### Theme Settings
40+
![Appearance Settings](https://public-1251960616.cos.ap-nanjing.myqcloud.com/images/setting-appearance.png)

index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/png" href="/favicon.png" />
6+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<title>SeekCode - 代码片段管理工具</title>
9+
</head>
10+
11+
<body>
12+
<div id="app"></div>
13+
<script type="module" src="/src/main.ts"></script>
14+
</body>
15+
</html>

package.json

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"name": "SeekCode",
3+
"private": true,
4+
"version": "0.1.0",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite",
8+
"build": "vue-tsc --noEmit && vite build",
9+
"preview": "vite preview",
10+
"tauri": "tauri",
11+
"generate-icons": "node scripts/generate-icons.js"
12+
},
13+
"dependencies": {
14+
"@codemirror/autocomplete": "^6.18.6",
15+
"@codemirror/basic-setup": "^0.20.0",
16+
"@codemirror/commands": "^6.8.1",
17+
"@codemirror/lang-css": "^6.3.1",
18+
"@codemirror/lang-go": "^6.0.1",
19+
"@codemirror/lang-html": "^6.4.9",
20+
"@codemirror/lang-java": "^6.0.2",
21+
"@codemirror/lang-javascript": "^6.2.4",
22+
"@codemirror/lang-json": "^6.0.2",
23+
"@codemirror/lang-markdown": "^6.3.3",
24+
"@codemirror/lang-php": "^6.0.2",
25+
"@codemirror/lang-python": "^6.2.1",
26+
"@codemirror/lang-rust": "^6.0.2",
27+
"@codemirror/lang-sql": "^6.9.0",
28+
"@codemirror/lang-vue": "^0.1.3",
29+
"@codemirror/lang-xml": "^6.1.0",
30+
"@codemirror/lang-yaml": "^6.1.2",
31+
"@codemirror/language": "^6.11.2",
32+
"@codemirror/language-data": "^6.5.1",
33+
"@codemirror/legacy-modes": "^6.5.1",
34+
"@codemirror/lint": "^6.8.5",
35+
"@codemirror/search": "^6.5.11",
36+
"@codemirror/state": "^6.5.2",
37+
"@codemirror/theme-one-dark": "^6.1.3",
38+
"@codemirror/view": "^6.38.0",
39+
"@fortawesome/fontawesome-free": "^6.7.2",
40+
"@tauri-apps/api": "^2.0.0-beta.0",
41+
"@tauri-apps/plugin-autostart": "^2.5.0",
42+
"@tauri-apps/plugin-dialog": "^2.0.0",
43+
"@tauri-apps/plugin-opener": "^2.0.0",
44+
"@tauri-apps/plugin-process": "~2.3.0",
45+
"@tauri-apps/plugin-sql": "^2.0.0",
46+
"@tauri-apps/plugin-updater": "~2",
47+
"codemirror": "^6.0.2",
48+
"sharp": "^0.34.2",
49+
"vue": "^3.4.29",
50+
"vue-i18n": "^11.1.8"
51+
},
52+
"devDependencies": {
53+
"@tauri-apps/cli": "^2",
54+
"@vitejs/plugin-vue": "^5.2.1",
55+
"autoprefixer": "^10.4.21",
56+
"postcss": "^8.5.6",
57+
"tailwindcss": "^3.4.17",
58+
"typescript": "~5.6.2",
59+
"vite": "^6.0.3",
60+
"vue-tsc": "^2.1.10"
61+
}
62+
}

0 commit comments

Comments
 (0)