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 🙏

© 2026 – Pkg Stats / Ryan Hefner

polarvo-layout

v1.0.79

Published

<!-- 폴라보 사용 레이아웃 라이브러리 --> * components 폴더: 컴포넌트 * core 폴더: 핵심 로직 * utils 폴더: 기타 로직

Readme

  • components 폴더: 컴포넌트
  • core 폴더: 핵심 로직
  • utils 폴더: 기타 로직

로컬에서 라이브러리 테스트하기

  1. 라이브러리(polavo-layout)에서 npm link
  2. 라이브러리를 사용하려는 프로젝트에서 npm link polarvo-layout

폴더구조

src/ ├── index.js # 메인 엔트리 포인트 ├── core/
│ ├── engines/ # 엔진별 핵심 로직 │ │ ├── LayoutEngine.js │ │ ├── DisplayEngine.js │ │ ├── FreeDropEngine.js │ │ └── GridDropEngine.js │ │ └── HistoryEngine.js │ ├── managers/ # 엔진 관리 및 통신 │ │ ├── EngineManager.js │ │ ├── ApiManager.js │ │ └── EventBus.js ├── library/ # 반응형 래퍼 │ ├── LayoutLibrary.js │ ├── DisplayLibrary.js │ ├── FreeDropLibrary.js │ ├── GridDropLibrary.js │ ├── HistoryLibrary.js │ └── index.js ├── configs/ # 설정 │ ├── index.js │ ├── resources/ # 기본 설정 │ │ ├── layoutResource.js │ │ ├── displayResource.js │ │ ├── elementResource.js │ │ ├── dropResource.js │ │ └── index.js ├── components/ # vue 컴포넌트
│ ├── Layout/ │ │ ├── CanvasContainer.vue │ │ ├── PolarLayout.vue │ │ ├── BaseLayout.vue │ │ ├── FreeLayout.vue │ │ └── GridLayout.vue │ ├── IconBar/ │ │ └── IconBar.vue │ ├── SideBar/ │ │ ├── ElementSideBar.vue │ │ ├── LayoutSideBar.vue │ │ └── LayoutSettingSideBar.vue │ ├── FastMenu/ │ │ ├── LayoutFastMenu.vue │ │ ├── DisplayFastMenu.vue │ │ ├── DesignFastMenu.vue │ │ └── HistoryFastMenu.vue │ └── MiniMenu/ │ │ └── LayoutMiniMenu.vue ├── utils/ # 유틸리티
│ ├── directives/ │ │ ├── click-outside.js │ │ └── index.js │ └── injex.js ├── icons/ # 아이콘
│ ├── layout/ │ ├── menu/ │ ├── display/ │ ├── action/ │ └── history/ └── styles.scss

history 관련 안내 사항

  • history에 추가할 내용이 있다면, event emit하는 시점에서 변경되는 데이터 값들을 prev 객체 내에 명시해주세요.
  • 예를 들어, 'layout:updateLayoutName' 이벤트에서는 layoutName을 수정하면서 layoutData, gridNumber, gridRatio 값이 모두 영향을 받기 때문에, prev 객체 내에 layoutName 뿐만이 아니라 layoutData, gridNumber, gridRatio 모두 입력해야 합니다.