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

john-test-design-system

v0.0.1

Published

1. semantic-ui 不兼容 node v>10 (https://github.com/Semantic-Org/Semantic-UI/issues/6897), 而 stenciljs 不兼容 node<12.10.0。 為此,解決方式是使用可兼容 node v14 的社群維護版本的 semantic-ui: fomantic-ui

Downloads

59

Readme

安裝 Semantic UI

  1. semantic-ui 不兼容 node v>10 (https://github.com/Semantic-Org/Semantic-UI/issues/6897), 而 stenciljs 不兼容 node<12.10.0。 為此,解決方式是使用可兼容 node v14 的社群維護版本的 semantic-ui: fomantic-ui

  2. 由於 semantic UI 安裝時會有交互式選項,yarn 無法支援交互式選項,因此本專案一律使用 npm https://jsramblings.com/how-to-use-semantic-ui-with-a-custom-theme-in-your-cra-app/

npm install --save-dev fomantic-ui
yarn install
  1. semantic-ui 和其他依賴包不同,安裝後不會寫在 node_module 下,而是寫入到專案資料夾下。原因是因為 semantic-ui 使用前還要自己透過 gulp 編譯才能用。 在第 2 步驟安裝時,交互式選項會提示詢問要安裝在哪個資料夾下

Option

  1. 安裝 semantic-ui 構建工具 gulp
yarn add -D gulp

實作 Web Component 時的注意事項

  1. event name 一律使用駝峰命名。原因如下:
    • HTML 原生的複合單字事件,一律是使用全小寫。例如 mousemove
    • 如果 web component 的自定義的複合字事件也使用全小寫(ex. detailclick),在 vue 上,可以透過 @detailclick 綁定事件,但在 react 上則無法使用 onDetailClick 綁定
    • 原因為,當 react 綁定原生複合字事件時(ex. onMouseMove),react 背後有一個原生事件 mapping 表叫做 SyntheticEvent,會自動把 "mouseMove" 轉為 "mousemove"。但當綁定的複合字事件不在 mapping 表時,則會使用駝峰命名綁定
    • 而,web component 的字定義複合字事件,不會真的成為原生 DOM 事件的一部分 (成為原生 DOM 事件意味可以使用 傳遞事件監聽器),因此自然也不適合擴展 SyntheticEvent 來加入這類字定義複合字事件 (我也不知道要怎麼擴展 SyntheticEvent)
    • 綜上,為了使複合字事件能橫跨不同前端框架使用,解決方式即為一律使用駝峰式命名

在 React 上實作的注意事項

  1. 由於 web component 的 prop 只能傳入 string 及 boolean (其餘的資料需要透過element.setAttribute('person', { name: 'john' }) 傳入,或是使用 JSON.stringify({ person: { name: 'john' } })) 因此在 react 上,要使用 reactify-wc 依賴包來協助傳遞 prop
import reactifyWc from 'reactify-wc'

const FFUpdatesForYou = reactifyWc('ff-updates-for-you')

<FFUpdatesForYou
  benchmarks={[
    {
      key: 'INDUSTRY_BENCHMARK_INDEX',
      text: 'Industry benchmark index',
      score: 4
    },

    {
      key: 'FININCIAL_HEALTHINESS',
      text: 'Financial healthiness',
      score: 0
    },

    {
      key: 'DATA_QUALITY',
      text: 'Data Quality',
      score: 10
    }
  ]}
/>

https://www.npmjs.com/package/reactify-wc

在 Vue 上實作的注意事項

  1. 由於 web component 的 prop 只能傳入 string 及 boolean (其餘的資料需要透過element.setAttribute('person', { name: 'john' }) 傳入,或是使用 JSON.stringify({ person: { name: 'john' } })) 因此在 vue 上,要使用 :xxx.prop 裝飾器來協助傳遞 prop
<ff-updates-for-you
  :benchmarks.prop="[
    {
      key: 'INDUSTRY_BENCHMARK_INDEX',
      text: 'Industry benchmark index',
      score: 4
    },

    {
      key: 'FININCIAL_HEALTHINESS',
      text: 'Financial healthiness',
      score: 0
    },

    {
      key: 'DATA_QUALITY',
      text: 'Data Quality',
      score: 10
    }
  ]"
/>

https://medium.com/sharenowtech/using-stenciljs-with-vue-a076244790e5