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

create-inula

v0.0.8

Published

在您需要创建项目的目录下执行以下命令:

Downloads

4

Readme

使用脚手架创建lnulaJS项目

步骤一: 启动Inula脚手架

在您需要创建项目的目录下执行以下命令:

npx create-inula <项目名>
步骤二: 选择需要项目模板

执行启动命令后,您将收到以下回显信息询问,可根据回显信息进行相应的输入:

Need to install the following packages:[email protected]
Ok to proceed? (y) y
? Please select the template (Use arrow keys)
> Simple-app

在创建项目过程中脚手架提供了 Simple-app 模板供开发者选择(后续会加入更多模板)。

  • Simple-app已默认安装Inula,开发者可以直接在项目中专注于核心代码的开发。
步骤三:选择打包方式

在创建项目过程中有两种打包方式供选择,您可以根据自己使用习惯选择

? Please select the build type (Use arrow keys)
 > webpack
   vite

如果您不知如何选择可分别参考Vite 文档以及webpack文档

至此,可以使用Inula框架,通过以下命令npm run start命令运行项目,你会看到简单的inula的示例。当然,你也可以基于inula框架构建您的web项目。