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

@neosjs/create-app

v1.2.12

Published

帮助开发者快速创建Vue3应用并自动配置项目

Downloads

170

Readme

@neosjs/create-app

NPM Version NPM Downloads NPM Downloads Node Current NPM License Create App

@neosjs/create-app 一个帮助开发者快速创建 Vue3 应用并自动配置项目编译的脚手架。配置完整、格式统一, 有点儿意思……

特性:

使用方法

要使用 @neosjs/create-app 创建一个新的Vue项目,只需在终端运行以下命令:

# npm
npm create @neosjs/app@latest

# yarn
yarn create @neosjs/app@latest

# pnpm
pnpm create @neosjs/app@latest # 推荐使用 pnpm

然后按照提示去做!

为了体验最新的功能,请切记加上 @latest 后缀

您还可以通过其他命令行选项直接指定项目名称和要使用的配置。例如,要构建一个Vue Router + Pinia项目,运行:

# npm
npm create @neosjs/app@latest my-app --pinia --router

# yarn
yarn create @neosjs/app@latest my-app --pinia --router

# pnpm
pnpm create @neosjs/app@latest my-app --pinia --router

推荐使用交互式命令行,以便更好的选择项目配置

支持选项

  • router - 引入Vue Router进行单页面应用开发
  • pinia - 引入Pinia用于状态管理
  • request - 引入数据请求
  • unocss - 引入Unocss原子化样式库
  • eslint - 引入Eslint代码检查
  • pwa - 引入PWA渐进式Web应用
  • https - 添加https证书
  • svg-sprite - 引入SvgSprite图标组件
  • vueuse - 引入Vueuse工具库
  • vitest - 添加Vitest进行单元测试
  • git - 初始化Git
  • githooks(当开启git时,该参数有效) - 引入用于Git钩子用于自动化 检查提交信息、检查代码
  • h5 - 创建一个H5项目
  • markdown - 添加Markdown支持
  • devtools - 添加Devtools支持
  • install - 自动安装依赖
  • force - 强制覆盖已存在的目录