seatcamp
HTML5-based ephemeral video chat. IRC with selfies! The official server of Meatspace
파일 탐색기
- node.js.yml
- camera-front.js
- camera-rear.js
- more-vert.js
- README.md
- save.js
- send.js
- svg-icon.js
- videocam-off.js
- about.htm
- about.js
- camera-preview.js
- capture-frames.js
- char-counter.js
- dialog.js
- dropdown.js
- fingerprint.js
- gif.js
- identicon.js
- index.js
- init-webrtc.js
- locale-time.js
- message.js
- notification-counter.js
- progress.js
- register-components.js
- stored-set.js
- styles.js
- theme.js
- styles.css
- docker-compose.yml
- docker-nginx.tmpl
- sample.env
- favicon.ico
- icon-114.png
- icon-128.png
- icon-16.png
- icon-256.png
- icon-72.png
- meatspace.ai
- chat-sockets.js
- ffmpeg-runner.js
- frame-converter.js
- serve-css.js
- user-counter.js
- favicon.ico
- icon-192.png
- icon-256.png
- icon-384.png
- icon-512.png
- manifest.json
- index.js
- .eslintrc
- lint.js
- .gitignore
- index.pug
- .babelrc
- .dockerignore
- .editorconfig
- .eslintignore
- .eslintrc
- .gitattributes
- .gitignore
- .prettierrc
- deploy.bat
- Dockerfile
- entrypoint.sh
- index.js
- LICENSE
- package-lock.json
- package.json
- protocol-version.js
- README.md
- sample.env
- server.js
- webpack.config.js
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
ack
설명 보기 ▼
ack
프로그래머에게 최적화된 grep과 같은 검색 도구.
관련 항목: `rg`.
더 많은 정보: <https://beyondgrep.com/documentation/>.
ack "{{search_pattern}}"
현재 디렉토리에서 문자열 또는 정규 표현식이 포함된 파일을 재귀적으로 검색:
ack {{[-i|--ignore-case]}} "{{search_pattern}}"
대소문자를 구분하지 않는 패턴 검색:
ack {{[-o|--output '$&']}} "{{search_pattern}}"
패턴과 일치하는 줄을 검색해, 검색되어 일치하는 텍스트만([o]nly) 인쇄:
brew install
설명 보기 ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
join
설명 보기 ▼
join
두 정렬된 파일의 공통 필드를 기준으로 줄을 결합.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/join-invocation.html>.
join {{path/to/file1}} {{path/to/file2}}
기본 필드(첫 번째 필드)를 기준으로 두 파일 결합:
join -t ',' {{path/to/file1}} {{path/to/file2}}
쉼표(공백 대신)를 필드 구분자로 사용하여 두 파일 결합:
join -1 {{3}} -2 {{1}} {{path/to/file1}} {{path/to/file2}}
파일1의 필드3과 파일2의 필드1을 기준으로 결합:
npm start
설명 보기 ▼
npm start
This command is an alias of `npm run start`.
tldr npm run
View documentation for the original command:
