terminal-portfolio-template

(★ 10)

A lightweight, terminal-style personal homepage template. Build your interactive developer portfolio easily with pure HTML/CSS/JS and a built-in config generator.

파일 탐색기

  • .gitignore
  • .nojekyll
  • eslint.config.js
  • index.html
  • package-lock.json
  • package.json
  • README.de.md
  • README.ko.md
  • README.md
  • README.tr.md
  • README.zh-CN.md
  • vitest.config.js

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

banner

설명 보기 ▼

주어진 인자를 큰 ASCII art로 출력.
더 많은 정보: <https://manned.org/banner>.

banner "{{Hello World}}"

텍스트 메시지를 큰 배너로 출력(따옴표는 선택 사항):

banner {{[-w|--width]}} 50 "{{Hello World}}"

텍스트 메시지를 너비가 50자인 배너로 출력:

banner

`stdin`에서 텍스트 읽기:

🔍

edit

설명 보기 ▼

Microsoft에서 만든 터미널 기반 텍스트 편집기.
더 많은 정보: <https://github.com/microsoft/edit>.

edit {{path/to/file}}

파일 열기:

tldr run-mailcap

자세한 내용은 원본 명령을 참고하세요:

<Ctrl f>{{pattern}}<Enter>

패턴 검색:

🔍

emacs

설명 보기 ▼

확장 가능, 사용자 정의 가능, 자체 문서화가 되는 실시간 디스플레이 편집기.
관련 항목: `emacsclient`.
더 많은 정보: <https://www.gnu.org/software/emacs>.

emacs {{path/to/file}}

Emacs 시작 및 파일 열기:

emacs +{{line_number}} {{path/to/file}}

지정된 줄 번호에서 파일 열기:

emacs --script {{path/to/file.el}}

Emacs Lisp 파일을 스크립트로 실행:

🔍

npm audit

설명 보기 ▼

Scan project dependencies for known security vulnerabilities.

npm audit

Scan the project's dependencies for known vulnerabilities:

npm audit fix

Automatically fix vulnerabilities in the project's dependencies:

npm audit fix {{[-f|--force]}}

Force an automatic fix to dependencies with vulnerabilities:

🔍

npm install

설명 보기 ▼

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

🔍

npm run

설명 보기 ▼

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

🔍

npm test

설명 보기 ▼

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

tldr npm run

View documentation for the original command:

🔍

npm

설명 보기 ▼

JavaScript 및 Node.js 패키지 관리자.
Node.js 프로젝트 및 모듈 의존성을 관리합니다.
더 많은 정보: <https://docs.npmjs.com/cli/npm/>.

npm init {{[-y|--yes]}}

기본값으로 `package.json` 파일 생성 (`--yes`를 생략하면 대화식으로 진행):

npm {{[i|install]}}

package.json에 의존성으로 나열된 모든 패키지를 다운로드:

npm {{[i|install]}} {{package_name}}@{{version}}

특정 버전의 패키지를 다운로드하고 `package.json`의 의존성 목록에 추가:

🔍

nvim

설명 보기 ▼

Neovim은 Vim을 기반으로 한 프로그래머용 텍스트 편집기로, 다양한 텍스트 조작을 위한 여러 모드를 제공합니다.
일반 모드에서 `<i>`를 누르면 입력 모드로 전환됩니다. `<Esc>`를 누르면 일반 모드로 돌아가며, 일반 텍스트 입력이 허용되지 않습니다.
관련 항목: `vim`, `vimtutor`, `vimdiff`.
더 많은 정보: <https://neovim.io/>.

nvim {{path/to/file}}

파일 열기:

<Esc><i>

텍스트 편집 모드(입력 모드)로 전환:

<Esc>{{<y><y>|<d><d>}}

현재 줄을 복사("yank") 또는 잘라내기("delete") (붙여넣기는 `<p>`로 수행):

🔍

python

설명 보기 ▼

Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.

python

REPL(대화형 셸) 시작:

python {{path/to/file.py}}

특정 Python 파일 실행:

python -i {{path/to/file.py}}

특정 Python 파일 실행 후 REPL 시작:

🔍

vim

설명 보기 ▼

Vim (Vi IMproved)는 다양한 텍스트 조작을 위한 여러 모드를 제공하는 명령줄 텍스트 편집기입니다.
일반 모드에서 `<i>`를 눌러 삽입 모드로 진입합니다. `<Esc>`를 눌러 다시 일반 모드로 돌아가면 Vim 명령을 사용할 수 있습니다.
관련 항목: `vimdiff`, `vimtutor`, `nvim`, `gvim`.
더 많은 정보: <https://www.vim.org/>.

vim {{path/to/file}}

파일 열기:

vim +{{line_number}} {{path/to/file}}

지정한 줄 번호에서 파일 열기:

<:>help<Enter>

Vim 메뉴얼 보기:

🔍

links

설명 보기 ▼

Command-line text-only web browser.
See also: `links2`.

links {{https://example.com}}

Visit a website:

links -anonymous {{https://example.com}}

Apply restrictions for anonymous account:

links -enable-cookies {{0|1}} {{https://example.com}}

Enable Cookies (`1` to enable):

# 프로젝트 배지

// repository documentation