seatcamp

(★ 95)

HTML5-based ephemeral video chat. IRC with selfies! The official server of Meatspace

파일 탐색기

  • .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으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

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

설명 보기 ▼

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

설명 보기 ▼

두 정렬된 파일의 공통 필드를 기준으로 줄을 결합.
더 많은 정보: <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

설명 보기 ▼

This command is an alias of `npm run start`.

tldr npm run

View documentation for the original command:

// repository documentation