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

auto-form

v1.0.4

Published

scan web pages and generate form structure

Downloads

23

Readme

auto-form

Scan web pages and generate form structure, for yirendai

on npm Tests Dependencies

Prerequisite

auto-form基于node.js开发,所以需要node.js软件平台,点击这里前往官网下载node.js。

  • Windows系统可以直接双击下载好的msi文件安装
  • Linux系统推荐从源码编译安装node.js,方法简述如下。

源码下载地址为http://nodejs.org/dist/v0.12.3/node-v0.12.3.tar.gz,更改版本号即可下载对应版本的node.js平台源码,下载完成后,依次使用如下指令操作。

# 解压缩
$ tar -zxvf node-v0.12.3.tar.gz
# 编译 与 安装
$ make & make install
# 放在任意一个环境变量目录下
$ mv ./node /usr/local/bin
# 下载npm安装文件
$ curl -O http://npmjs.org/install.sh
# 赋予可执行权限
$ chmod +x install.sh
# 安装npm
$ ./install.sh
# 安装完成后,可进行测试
$ node -v & npm -v

Install

我已将auto-form发布到npmjs.org点击此查看auto-form。安装auto-form使用npm即可,添加-g选项进行全局安装。

# 如果操作失败,记得使用sudo
$ npm install -g auto-form

如果安装失败是由于网络问题,建议使用国内npm镜像,方法如下。

# 通过淘宝npm镜像,安装cnpm
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
# 使用cnpm安装auto-form
$ cnpm install -g auto-form

Usage

auto-form使用很简单,现在的功能也很单一,命令如下。

# auto-form [FILE]...
$ auto-form basic.html detail.html

操作完成后,会在当前目录下生成CSV文件。Enjoy :smile: