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

react-isomorphic-builder

v0.0.7

Published

通过一个入口,根据 react element 生成 html 文件以及 assets 的 react 同构开发构建工具。

Downloads

1

Readme

react-isomorphic-builder

通过一个入口,根据 react element 生成 html 文件以及 assets 的 react 同构开发构建工具。

example

entry 代码

import React from 'react';
import './test.css';

class Page extends React.Component {
  render() {
    return (
      <html>
      <head>
        {this.props.stylesheets}
      </head>
      <body>
      hellow world
      {this.props.scripts}
      </body>
      </html>
    );
  }
}

// 在 node 环境返回需要 build 的 react element
if (typeof window === 'undefined') {
  module.exports = <Page />;
} else {
// browser 执行代码,一般包含 React.render
  React.render(<Page />, document.body);
}

构建代码

var builder = require('react-isomorphic-builder');
var path = require('path');

builder({
  rootdir: __dirname,	// 工作目录
  entry: path.join(__dirname, './src/index.js'), // 入口文件绝对路径
  outputdir: path.join(__dirname, 'dist'), // 输出文件目录绝对路径
  publicPath: 'localhost:3000://public/'		// 静态资源路径
})

生成文件

html

<html data-reactid=".cy5ydv2j28" data-react-checksum="-477137466">
<head data-reactid=".cy5ydv2j28.0">
  <link href="public/main-4eb9f8b0956638f2a89c102395c475ad.css" data-reactid=".cy5ydv2j28.0.0"/>
</head>
<body data-reactid=".cy5ydv2j28.1"><span data-reactid=".cy5ydv2j28.1.0">hellow world</span>
<script src="public/index-2094e7c123c437b38cab.js" data-reactid=".cy5ydv2j28.1.1:0"></script>
</body>
</html>

打包好的静态资源

main-4eb9f8b0956638f2a89c102395c475ad.css index-2094e7c123c437b38cab.js

构建完成的文件目录

.
├── dist
│   ├── index-2094e7c123c437b38cab.js
│   ├── index-2094e7c123c437b38cab.js.map
│   ├── index.html
│   ├── index.js
│   ├── main-4eb9f8b0956638f2a89c102395c475ad.css
│   └── main-4eb9f8b0956638f2a89c102395c475ad.css.map
├── package.json
├── src
│   ├── index.js
│   └── test.css
├── webpack-assets.json
└── worker.js