{"id":20281750,"url":"https://github.com/ushelp/express-quicker","last_synced_at":"2025-03-04T03:23:01.889Z","repository":{"id":69648047,"uuid":"95540985","full_name":"ushelp/Express-quicker","owner":"ushelp","description":"Express application generator tool based on Express-quickstart.","archived":false,"fork":false,"pushed_at":"2019-08-13T06:18:39.000Z","size":169,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-14T22:05:35.691Z","etag":null,"topics":["express","express-js","expressjs","node","node-express","node-express-start","node-js","nodejs","nodejs-example","nodejs-express"],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ushelp.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["http://www.easyproject.cn/donation"]}},"created_at":"2017-06-27T09:22:41.000Z","updated_at":"2019-08-13T06:18:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"2f1e4631-b7a0-472e-aef5-9fd359b92e10","html_url":"https://github.com/ushelp/Express-quicker","commit_stats":{"total_commits":13,"total_committers":1,"mean_commits":13.0,"dds":0.0,"last_synced_commit":"b9e22cdc8924cb8db69fc8c33eb0fdc7582e39eb"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ushelp%2FExpress-quicker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ushelp%2FExpress-quicker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ushelp%2FExpress-quicker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ushelp%2FExpress-quicker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ushelp","download_url":"https://codeload.github.com/ushelp/Express-quicker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241774374,"owners_count":20018257,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["express","express-js","expressjs","node","node-express","node-express-start","node-js","nodejs","nodejs-example","nodejs-express"],"created_at":"2024-11-14T14:06:41.354Z","updated_at":"2025-03-04T03:23:01.867Z","avatar_url":"https://github.com/ushelp.png","language":"HTML","readme":"# Express-quicker\n\n**Express-quicker** 是一个针对 [Express](http://expressjs.com/ \"Express - Node.js web application framework\") 的应用程序快速生成命令行工具。项目骨架基于 [Express-quickstart](https://github.com/ushelp/Express-quickstart \"Express-quickstart\")。\n\n\n**Express-quiecker** is a [Express](http://expressjs.com/ \"Express - Node.js web application framework\") application generator tool, to quickly create an application skeleton based on [Express-quickstart](https://github.com/ushelp/Express-quickstart \"Express-quickstart\").\n\n\n\n## 使用/Use\n\n- 安装命令行工具 / Installs command-line tool:\n\t```\n\tnpm install express-quicker -g\n\t```\n\n- 创建 Express-quickstart 项目 / Creates an Express-quickstart app:\n\t```\n\tequicker -h\n\tequicker [app-name]\n\tequicker [-t \u003ctype\u003e] [app-name]\n\t```\n\t- **type**\n\t\n\t     当前可用类型：[emp]\n\t   \n\t  The current allowable type in: [emp]\n\t  \n\t  ```\n\t  equicker -t emp [app-name]\n\t  ```\n\n- 安装依赖 / Then install dependencies:\n\t```\n\tnpm install\n\t```\n\t\n- 启动 / Startup:\n\t```\n\tnpm start\n\t```\n\n- 访问 / Load:\n\n `http://localhost:3000/`\n\n## 目录结构 / directory structure\n\n- **equicker** [app-name]\n\n\t```sh\n\t.\n\t├── app.js\n\t├── package.json\n\t├── public\n\t│   ├── img\n\t│   ├── js\n\t│   └── css\n\t│       └── style.css\n\t│   └── favicon.ico\n\t│   └── upload.html\n\t├── routes\n\t│   ├── index.js\n\t│   └── users.js\n\t├── uploads\n\t└── views\n\t    ├── error.etj\n\t    ├── index.etj\n\t    └── users.etj\n\t```\n  \n- **equicker  -t  emp**  [app-name]\n \n\t```sh\n\t.\n\t├── app.js\n\t├── package.json\n\t├── entiy\n\t│   ├── Dept.js\n\t│   ├── Emp.js\n\t│   └── User.js\n\t├── filter\n\t│   └── user-filter.js\n\t├── public\n\t│   ├── img\n\t│   ├── js\n\t│   └── css\n\t│       └── style.css\n\t│   └── favicon.ico\n\t│   └── upload.html\n\t├── routes\n\t│   ├── depts.js\n\t│   ├── emps.js\n\t│   ├── index.js\n\t│   └── users.js\n\t├── service\n\t│   ├── dept-service.js\n\t│   ├── emp-service.js\n\t│   └── users-service.js\n\t├── uploads\n\t└── views\n\t\t├── admin\n\t\t│   └── admin.etj\n\t\t├── dept\n\t\t│   └── list.etj\t\n\t\t├── emp\n\t\t│   └── list.etj\n\t    ├── error.etj\n\t    └── index.etj\n\t``` \n  \n## Express-quickstart\n\n### [Express-quickstart](https://github.com/ushelp/Express-quickstart \"Express-quickstart\")\n\n  \n## Express-quickstart-emp\n\n### [Express-quickstart-emp](https://github.com/ushelp/express-quickstart-emp \"Express-quickstart-emp\")\n\n## End\n\nEmail：\u003cinthinkcolor@gmail.com\u003e\n\n[http://www.easyproject.cn](http://www.easyproject.cn \"EasyProject Home\")\n\n\n**支付宝钱包扫一扫捐助：**\n\n我们相信，每个人的点滴贡献，都将是推动产生更多、更好免费开源产品的一大步。\n\n**感谢慷慨捐助，以支持服务器运行和鼓励更多社区成员。**\n\n\u003cimg alt=\"支付宝钱包扫一扫捐助\" src=\"http://www.easyproject.cn/images/s.png\"  title=\"支付宝钱包扫一扫捐助\"  height=\"256\" width=\"256\"\u003e\u003c/img\u003e\n\n\n\nWe believe that the contribution of each bit by bit, will be driven to produce more and better free and open source products a big step.\n\n**Thank you donation to support the server running and encourage more community members.**\n\n[![PayPal](http://www.easyproject.cn/images/paypaldonation5.jpg)](https://www.paypal.me/easyproject/10 \"Make payments with PayPal - it's fast, free and secure!\")\n\n","funding_links":["http://www.easyproject.cn/donation","https://www.paypal.me/easyproject/10"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fushelp%2Fexpress-quicker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fushelp%2Fexpress-quicker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fushelp%2Fexpress-quicker/lists"}