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

edpx-mobile

v1.8.0

Published

EDP extension for Mobile project.

Downloads

10

Readme

edpx-mobile

NPM version License EFE Mobile Team

EDP extension for Mobile project.

专注于移动开发的 edp 扩展,为您提供最佳的 Fate 开发体验

Installation

不用特殊安装,第一次使用 edpx-mobile 提供的功能时 edp 会自动安装该插件,如果想提前手动安装的话请使用以下方法:

$ npm install -g edpx-mobile

CLI

init <theme>

初始化项目,会完成项目目录结构的初始化,导入所有依赖的模块并且生成基础代码。主题参数 theme 表明生成哪种类型的项目,有以下取值:

  • spa 单页应用
  • iso 同构应用
# 初始化同构的项目
$ edp mobile init iso

add [type] <path> [file_name_prefix]

添加业务,会为 path (是以 / 开头的有效 URL 路径)指定的路径添加相应的 Presenter、View、Model、Template 与 Style 文件,比如:

$edp mobile add /

会添加处理 / 路径的相关文件,并且以 path 为基础来命名文件,比如此时 Presenter 为 index.js,Model 为 indexModel.js

也可以通过指定 type 来单独添加某一类文件,type 的有效取值如下:

  • presenter 添加 Presenter 文件,同时会自动往路由配置信息文件中添加对应的路由信息
  • view 添加 View 文件
  • model 添加 Model 文件
  • template 添加模版文件文件
  • style 添加样式文件

还也可以使用 file_name_prefix 指定生成的文件名前缀,比如:

$ edp mobile add /detail/:id product/detail

以上命令会生成处理 /detail/:id 路径的相关文件并且以 file_name_prefix 指定的名称作为文件名前缀,比如此时 Presenter 为 product/detail.js,Model 为 product/detailModel.js

生成文件的具体路径由当前项目的主题决定,如果是 spa 单页面应用,则所有生成的文件都在 src 目录下,而如果是 iso 同构项目则 libsrc 文件夹下都会新增文件,所以在指定 file_name_prefix 时不需要写 src 或者 lib 文件夹名

start

启动测试服务器,第一次启动测试服务器时会先安装缺失的依赖,所以可能会有些慢,稍安去燥,正好起身喝杯茶~ (这里的“第一次”是对系统而言的哟,所以你可能有且只有一次机会能去喝杯茶 :) )

$ edp mobile start

自测服务器的相关配置在 edp-webserver-config.js 中,详细配置信息请参考这里。在自测服务器中我们集成了 Weinrelivereload 功能,方便移动端的调试,并且对于 iso 同构的项目默认启动了代码监控与自动重启,在修改了 JavaScript、模版文件或者 JSON 配置信息后都无需手动重启服务~

build [--config=] [--stage=] [--force]

构建项目

  • --config 指定构建配置文件
  • --stage 指定Processors的组合
  • --force 强制构建。如果输出目录存在时,指定此选项,将强制删除现有的输出目录,并重新创建空目录

构建时会根据项目主题来进行相应的构建操作

SPA

单页应用直接使用 edp-build 进行前端代码的构建,相关的配置在 edp-build-config.js 中,具体请参考 edp build 说明

ISO

同构项目分成前端构建与后端构建两部分,对于前端构建与 SPA 主题的项目构建一样,直接使用 edp-build 进行处理。

后端构建主要进行以下操作:

  • 文件拷贝 后端代码不需要编译,只需要进行简单的文件拷贝就可以,默认会将 app.jslibnode_modules 拷贝到输出目录
  • 配置文件夹拷贝 会根据命令中的 --stage 参数与构建配置信息中设置的 config 来选择正确的配置文件夹将其拷贝到输出目录
  • 主文件处理 将前端编译完成的主页面移动到后端的输出目录中

相关的构建配置信息也在 edp-build-config.js 中,默认的配置如下:

exports.rebas = {
    // 指定输出目录
    output: 'output/node',
    // 指定需要直接拷贝到输出目录的文件
    files: ['app.js', 'lib', 'node_modules'],
    // 指定主文件
    index: 'index.html',
    // 指定配置文件夹
    configDir: 'config'
};

More

edpx-mobile 目前只提供了 initaddstartbuild 四条命令,并不能独立的完全覆盖开发的方方面面,剩下的部分我们认为 edp 已经完成得很贴心了,所以如果还有其它需求就请直接使用 edp 提供的相关功能,如果感觉某些 edp 或者 edpx-mobile 提供的功能不好用、不符合预期,请告诉我们或者直接给我们提交 PR ~