
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@titicaca/triple-url-utilities
Advanced tools
URL 관련 유틸성 라이브러리를 제공합니다.
npm으로 설치합니다:
$ npm install @titicaca/triple-url-utilities
query-string으로 주어진 값의 타입을 결정하여 사용할 수 있게 도와주는 인터페이스.
import { strictQuery } from '@titicaca/triple-url-utilities'
const { regionId, tripId, categoryIds, agesOfChildren, inRegion } = strictQuery(
query,
)
.string('regionId') // regionId will be string | undefined
.number('tripId') // tripId will be number | undefined
.stringArray('categoryIds') // categoryIds will be string[] | undefined
.numberArray('agesOfChildren') // agesOfChildren will be number[] | undefined
.boolean('inRegion') // inRegion will be boolean | undefined
.use()
strictQuery 함수를 이용해 속성과 타입을 매핑할 수 있는 인스턴스로 바꿔줍니다.
그 다음 원하는 타입과 속성 키를 매핑해줍니다. chaining으로 여러 속성을 한 번에 매핑할 수 있습니다.
그리고 use 메서드를 이용해 일반 객체를 반환해주면 원하는 타입으로 사용할 수 있습니다.
FAQs
URL utilities to be used at Triple.
We found that @titicaca/triple-url-utilities demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 118 open source maintainers 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.