{"id":22433684,"url":"https://github.com/gavinning/aimee","last_synced_at":"2025-03-27T07:45:50.500Z","repository":{"id":33926356,"uuid":"37647680","full_name":"gavinning/aimee","owner":"gavinning","description":null,"archived":false,"fork":false,"pushed_at":"2015-11-04T10:07:02.000Z","size":160,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-02T20:18:02.066Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gavinning.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-06-18T08:35:06.000Z","updated_at":"2015-12-28T03:55:46.000Z","dependencies_parsed_at":"2022-08-29T00:10:51.707Z","dependency_job_id":null,"html_url":"https://github.com/gavinning/aimee","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gavinning%2Faimee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gavinning%2Faimee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gavinning%2Faimee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gavinning%2Faimee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gavinning","download_url":"https://codeload.github.com/gavinning/aimee/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245806390,"owners_count":20675296,"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":[],"created_at":"2024-12-05T22:15:38.662Z","updated_at":"2025-03-27T07:45:50.472Z","avatar_url":"https://github.com/gavinning.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"#Aimee\n\n##官方模块\nUZ构建工具定制化模块，所以最好配合UZ使用  \n所有模块形式和nodejs模块相同，类CMD，包装define外壳后可以使用seajs调用  \n[Aimee-class](https://github.com/gavinning/aimee-class)  \n[Aimee-pm](https://github.com/gavinning/aimee-pm)  \n[Aimee-page](https://github.com/gavinning/aimee-page)  \n[Aimee-app](https://github.com/gavinning/aimee-app)  \n[Aimee-is](https://github.com/gavinning/aimee-is)  \n[Aimee-extend](https://github.com/gavinning/aimee-extend)\n\n##项目\n####项目开发目录\n```\nproject                           // 项目目录\n├── css\n│   ├── common.less               // 公共样式\n│   ├── inc                       // 与业务有关的样式模块，不被构建工具处理\n│   └── lib                       // 与业务无关的样式模块，不被构建工具处理\n├── images                        // 图片文件夹最终位置，构建工具会将模块图片发布到这个位置\n│   └── img                       // 用于占位的图片位置\n│   ├── app                       // 构建工具将会按照模块名称将其图片发布到images目录下，开发者可忽略\n│   │   └── img\n├── js                            // js位置，够将\n│   └── dev                       // 不上线的js文件，仅用于开发环境，构建工具将会忽略\n│   └── lib                       // js库文件位置\n│   └── pkg                       // 构建工具发布打包后js文件的位置\n├── packages                      // 包管理工具安装目录，待定\n├── modules                       // 纯js模块\n│   └── app\n│       └── app.js\n├── pages                         // 页面\n│   └── init.js                   // 页面入口js文件，require('init')\n│   └── home\n│       ├── home.jade             // 页面模板文件\n│       ├── home.js               // 页面js文件\n│       └── home.json.js          // 页面模拟数据，仅用于开发环境\n└── widget\n    └── header                    // Widget Ui模块\n        ├── header.jade           // Widget模板文件\n        ├── header.js             // Widget js文件\n        ├── header.json.js        // Widget模拟数据，仅用于开发环境\n        ├── header.less           // Widget样式文件\n        └── img                   // Widget图片文件夹\n\n```\n\n\u003ca name=\"a42\"/\u003e\n####项目产出目录\n\n```\ndest\n├── css\n│   └── home.css                    // 样式文件只产出 home.css\n├── images                          // 最终图片文件夹\n│   ├── app\n│   │   └── img\n│   └── img\n├── index.html                      // 入口HTML文件\n├── js                              // 最终js存放目录\n│   └── pkg                         // 打包js存放目录\n│       ├── json.js                 // 模拟数据，仅用于测试\n│       ├── lib.js                  // 库文件\n│       ├── mods.js                 // 纯js模块\n│       ├── page.js                 // widget \u0026\u0026 pages\n│       └── templates.js            // HTML模板\n```\n\n\n####Widget-app开发\n[Aimee-app](https://github.com/gavinning/aimee-app)  \n\n\n####虚拟页开发\n[Aimee-page](https://github.com/gavinning/aimee-page)  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgavinning%2Faimee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgavinning%2Faimee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgavinning%2Faimee/lists"}