npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@kurly-lfd/logger

v1.0.1

Published

등록한 이벤트를 감시하여 해당 정보를 전달받은 곳에 전송하는 기능

Downloads

33

Readme

KurlyLogger

내용

내용 설명

개발할 때

설치

설치 시 오류가 발생할 경우 node와 npm을 최신으로 업데이트 해주세요.

npm install

사용

포트는 3030을 사용합니다.

npm run start

테스트

작성된 spec에 맞춰 콘솔에 해당 내용을 출력합니다.

npm run test:unit

TDD

TDD 모드를 별도로 제공합니다. 아래의 명령어를 입력하면 TDD 모드를 실행할 수 있습니다.

npm run test:tdd

빌드

생성된 lib 디렉토리의 logger.js를 이용합니다.

npm run build

사용할 때

npm package 설치

npm install @kurly-lfd/logger --save

개발환경에서 모듈형태로 사용할 경우

index.html 참고

lib/logger.js 파일을 직접 로드하여 사용할 경우

index.html 참고

설명

| 매개변수 | 역할 | 비고 | | ---------- | -------------------------- | ----------------------------------- | | URL | 데이터를 전송할 목적지 URL | 문자열 | | CATEGORIES | 감시할 대상 이벤트 | 객체 { 이벤트: [항목, 항목, 항목] } | | initialize | 초기화 | 전달할 값을 전달해줄 콜백 함수 | | sendData | 커스텀 이벤트 호출 함수 | '항목', '전달할 값' |