项目作者: abradley2

项目描述 :
高级语言: JavaScript
项目地址: git://github.com/abradley2/create-inferno-component.git
创建时间: 2017-02-19T16:49:27Z
项目社区:https://github.com/abradley2/create-inferno-component

开源协议:The Unlicense

下载


Create Inferno Component

This is a simple way to create reusable Inferno components.

Getting Started

  1. git clone --depth 1 https://github.com/abradley2/create-inferno-component
  2. mv create-inferno-component my-component-name
  3. cd my-component-name
  4. rm -rf .git
  5. git init
  6. npm install
  7. npm run watch

Development

Just execute npm run watch to start the simple development server with live-reload on
by default.

The component is located in component.js. Components should be stateless and
not modify their own props. The prototyping harness is in main.js. You can edit the
props that are passed to your component, and call update() when that component
would receive new props.

Publishing

npm run build will output that completed component to dist/component.js.
inferno and inferno-create-element are not included in the output
(they are peerDependencies). The only thing added is a very small script to inject the
component’s css into the document via inject-css. The tagged css and html
template strings are pre-compiled by sheetify and hyperxify respectively
for performance and to minimize the bundle size.

When finished, just add some details to your package.json about the project, update the README,
and publish it to NPM!