omnom
A web content preservation service
파일 탐색기
- docker-publish.yml
- golangci-lint.yml
- release.yml
- tests.yml
- FUNDING.yml
- activitypub.go
- cmd.go
- config.go
- contentdiff.go
- development.md
- extension.md
- fediverse.md
- fs.go
- index.md
- web_interface.md
- style.css
- omnom.png
- omnom1024.png
- omnom128.png
- omnom256.png
- omnom32.png
- omnom48.png
- omnom64.png
- document.js
- file-download.js
- get-dom-data.js
- main.js
- options-page.js
- resources.js
- sanitize.js
- site-main.js
- snapshot.js
- tag-input.js
- utils.js
- background.js
- module.js
- omnom.js
- options.js
- site.js
- webapp_snapshot.js
- Dosis-ExtraLight.eot
- Dosis-ExtraLight.ttf
- Dosis-ExtraLight.woff
- Dosis-ExtraLight.woff2
- Dosis-Regular.eot
- Dosis-Regular.ttf
- Dosis-Regular.woff
- Dosis-Regular.woff2
- dosis-v22-latin-700.eot
- dosis-v22-latin-700.ttf
- dosis-v22-latin-700.woff
- dosis-v22-latin-700.woff2
- fa-brands-400.eot
- fa-brands-400.svg
- fa-brands-400.ttf
- fa-brands-400.woff
- fa-brands-400.woff2
- fa-regular-400.eot
- fa-regular-400.svg
- fa-regular-400.ttf
- fa-regular-400.woff
- fa-regular-400.woff2
- fa-solid-900.eot
- fa-solid-900.svg
- fa-solid-900.ttf
- fa-solid-900.woff
- fa-solid-900.woff2
- manifest.json
- options.html
- popup.html
- build.js
- env.js
- webserver.js
- API_DOC.md
- package-lock.json
- package.json
- README-EXT.md
- README.md
- webpack.config.js
- feed.go
- feed_test.go
- de.json
- en.json
- es.json
- fr.json
- hu.json
- it.json
- nl.json
- pl.json
- ru.json
- zh_Hans.json
- localization.go
- mail.go
- activitypub.go
- bookmark.go
- collection.go
- feed.go
- migration.go
- model.go
- model_test.go
- resource.go
- search.go
- snapshot.go
- tag.go
- token.go
- user.go
- github.go
- google.go
- oidc.go
- providers.go
- _mixins.scss
- _placeholders.scss
- _variables.scss
- _base.scss
- _typography.scss
- _accordion.scss
- _options.scss
- _popup.scss
- _progress.scss
- _webapp.scss
- _base.scss
- extension.scss
- main.scss
- package-lock.json
- package.json
- README.md
- bulma.css
- fa.brands.min.css
- fa.min.css
- google-fonts.css
- style.css
- omnom_extension_popup.png
- addon_icon.png
- omnom-logo-v1.ai
- omnom-logo-v1.svg
- omnom.png
- omnom_addon.png
- omnom_mastodon_follow.png
- omnom_mastodon_post.png
- omnom_logo_1024_white.png
- site.js
- snapshot.js
- index.html
- test.css
- Dosis-ExtraLight.eot
- Dosis-ExtraLight.ttf
- Dosis-ExtraLight.woff
- Dosis-ExtraLight.woff2
- Dosis-Regular.eot
- Dosis-Regular.ttf
- Dosis-Regular.woff
- Dosis-Regular.woff2
- dosis-v22-latin-700.eot
- dosis-v22-latin-700.ttf
- dosis-v22-latin-700.woff
- dosis-v22-latin-700.woff2
- fa-brands-400.ttf
- fa-brands-400.woff2
- fa-solid-900.ttf
- fa-solid-900.woff2
- omnom.svg
- placeholder-image.png
- static.go
- fs.go
- storage.go
- base.tpl
- base.html.tpl
- login.html.tpl
- login.txt.tpl
- api.tpl
- bookmarks.tpl
- create_bookmark.tpl
- dashboard.tpl
- docs.tpl
- edit_bookmark.tpl
- edit_collection.tpl
- edit_feed.tpl
- error.tpl
- feed_search.tpl
- feeds.tpl
- index.tpl
- login.tpl
- login_confirm.tpl
- my_bookmarks.tpl
- profile.tpl
- rss.xml
- search.tpl
- signup.tpl
- signup_confirm.tpl
- snapshot_archive.tpl
- snapshot_details.tpl
- snapshot_diff.tpl
- snapshot_diff_form.tpl
- snapshot_diff_side_by_side.tpl
- snapshot_wrapper.tpl
- snapshots.tpl
- templates.go
- test.tpl
- user.tpl
- view_bookmark.tpl
- .gitignore
- package-lock.json
- package.json
- test.js
- test_config.yml
- utils.go
- validator.go
- activitypub.go
- activitypub_test.go
- api.go
- bookmark.go
- collection.go
- contentdiff.go
- dashboard.go
- docs.go
- feed.go
- oauth.go
- resource.go
- search.go
- snapshot.go
- user.go
- webapp.go
- .dockerignore
- .gitignore
- .gitmodules
- .golangci.toml
- .goreleaser.yml
- config.yml_sample
- Dockerfile
- entrypoint.sh
- go.mod
- go.sum
- LICENSE
- manage.sh
- omnom.go
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
go build
설명 보기 ▼
go build
Compile Go sources.
go build {{path/to/main.go}}
Compile a 'package main' file (output will be the filename without extension):
go build -o {{path/to/binary}} {{path/to/source.go}}
Compile, specifying the output filename:
go build -o {{path/to/binary}} {{path/to/package}}
Compile a package:
go get
설명 보기 ▼
go get
Add a dependency package, or download packages in legacy GOPATH mode.
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.
go get {{example.com/pkg}}
Add a specified package to `go.mod` in module-mode or install the package in GOPATH-mode:
go get {{example.com/pkg}}@{{v1.2.3}}
Modify the package with a given version in module-aware mode:
go get {{example.com/pkg}}@{{none}}
Remove a specified package:
go run
설명 보기 ▼
go run
Compile and run Go code without saving a binary.
go run {{path/to/file.go}}
Run a Go file:
go run {{path/to/package}}
Run a main Go package:
