
Security News
Node.js Considers Public Workflow for Security Reports Amid AI-Driven Surge
Node.js is debating whether AI-driven security report volume warrants moving more vulnerability reports into public workflows.
@bifos/nhncloud-cli
Advanced tools
NHN Cloud 서비스를 AWS CLI 방식으로 호출하는 통합 CLI.
현재 logncrash search (Log & Crash 로그 검색) 를 지원한다.
npm install -g @bifos/nhncloud-cli
nhncloud configure 를 실행하면 대화형 마법사가 자격증명을 안내한다.
nhncloud configure
--no-verify 로 생략 가능).nhncloud configure \
--uak-id <id> --uak-secret <secret> \
--logncrash-appkey <key> --logncrash-secret <secret> \
--no-verify
저장 경로: ~/.nhncloud/credentials.json (mode 0600), ~/.nhncloud/config.json.
profile 해석 우선순위: --profile 옵션 > NHNCLOUD_PROFILE 환경변수 > config.defaultProfile > "default".
nhncloud configure --uak-id <id> --uak-secret <secret> 으로 UAK 를 설정한 뒤,
~/.nhncloud/config.json 에 deploy target (배포 좌표)을 추가한다.
{
"version": 1,
"deploy": {
"targets": {
"my-service": {
"appKey": "<appKey>",
"artifactId": "<artifactId>",
"serverGroupId": "<serverGroupId>",
"scenarioIds": "<id1,id2>"
}
}
}
}
# 배포 실행 (동기 완료 대기)
nhncloud deploy run my-service
# 즉시 반환 (비동기)
nhncloud deploy run my-service --async
# 특정 호스트만 배포
nhncloud deploy run my-service --target-hosts host1,host2
# 아티팩트 목록 조회
nhncloud deploy artifacts my-service
# 서버그룹 목록 조회
nhncloud deploy server-groups my-service
# 배포 이력 조회
nhncloud deploy histories my-service
# 최근 1시간 NORMAL 로그
nhncloud logncrash search \
--query 'logType:"NORMAL"' \
--from 1h \
--to now
시간은 상대시간 (1h / 30m / 2d / now) 또는 ISO8601 (2026-05-01T00:00:00+09:00) 로 입력한다.
API 제약상 검색 시작은 최근 90일 이내, 검색 범위는 31일 이하여야 한다 (초과 시 입력 오류로 거절).
| 모드 | 옵션 | 용도 |
|---|---|---|
| 테이블 | (기본) | 사람이 읽는 고정 컬럼 출력 |
| JSON | --json | 자동화·AI 에이전트용 raw 데이터 + 페이지 메타 |
| quiet | --quiet | 행별 최소 출력 |
# 검색 결과에서 logBody 만 추출
nhncloud logncrash search --query '*' --from 1h --to now --json | jq -r '.data[].logBody'
# 전체 건수 확인
nhncloud logncrash search --query '*' --from 1d --to now --json | jq '.totalItems'
| 옵션 | 필수 | 설명 |
|---|---|---|
--query <lucene> | 예 | Lucene 질의 문자열 |
--from <time> | 예 | 검색 시작 (ISO8601 또는 상대시간) |
--to <time> | 예 | 검색 끝 |
--page <n> | 아니오 | pageNumber (기본 0) |
--size <n> | 아니오 | pageSize (기본 10, 최대 100) |
--profile <name> | 아니오 | 사용할 profile |
전역 옵션: --json / --quiet / --no-color.
| 코드 | 의미 |
|---|---|
| 0 | 성공 |
| 1 | API 오류 |
| 2 | 인증 실패 (401/403) |
| 3 | 입력 오류 (파라미터·시간 범위) |
| 4 | 설정 오류 (자격증명 누락) |
pnpm install
pnpm run build # tsup 단일 번들 (dist/index.js)
pnpm tsc --noEmit # 타입 체크
node dist/index.js logncrash search --help
FAQs
CLI tool for NHN Cloud services — AI agent & terminal friendly
The npm package @bifos/nhncloud-cli receives a total of 210 weekly downloads. As such, @bifos/nhncloud-cli popularity was classified as not popular.
We found that @bifos/nhncloud-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Node.js is debating whether AI-driven security report volume warrants moving more vulnerability reports into public workflows.

Security News
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.