init
Showing
CHANGELOG.md
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100755
app/controller/admin/admin.js
0 → 100644
app/controller/index/index.js
0 → 100644
app/extend/application.js
0 → 100644
app/extend/context.js
0 → 100644
app/lib/db/base.js
0 → 100644
app/lib/db/collection.js
0 → 100644
app/lib/db/factory.js
0 → 100644
app/lib/db/file.js
0 → 100644
app/lib/db/mongo.js
0 → 100644
app/lib/db/mysql.js
0 → 100644
app/lib/db/query.js
0 → 100644
app/middleware/access.js
0 → 100644
app/middleware/locals.js
0 → 100644
app/model/article.js
0 → 100644
app/model/artilcedetail.js
0 → 100644
app/model/user.js
0 → 100644
app/model/utils/base.js
0 → 100644
app/router.js
0 → 100644
app/service/article.js
0 → 100644
app/view/README.md
0 → 100644
app/web/asset/css/blog.css
0 → 100755
app/web/asset/css/bootstrap.css
0 → 100755
app/web/asset/css/global.css
0 → 100644
文件已添加
文件已添加
因为 它太大了无法显示 source diff 。你可以改为 查看blob。
文件已添加
文件已添加
文件已添加
文件已添加
文件已添加
文件已添加
文件已添加
129.3 KB
app/web/asset/images/favicon.ico
0 → 100644
4.2 KB
app/web/asset/images/loading.gif
0 → 100755
6.6 KB
app/web/asset/images/logo.png
0 → 100644
35.2 KB
app/web/framework/i18n/site/cn.js
0 → 100644
app/web/framework/i18n/site/en.js
0 → 100644
app/web/framework/plugin/index.js
0 → 100644
app/web/page/about/about.css
0 → 100644
app/web/page/about/about.vue
0 → 100644
app/web/page/admin/home/home.vue
0 → 100755
app/web/page/index/index.css
0 → 100644
app/web/page/index/index.vue
0 → 100644
app/web/view/layout.html
0 → 100644
babel.config.js
0 → 100644
blog.json
0 → 100644
config/config.default.js
0 → 100644
config/config.local.js
0 → 100644
config/config.prod.js
0 → 100644
config/config.test.js
0 → 100644
config/manifest.json
0 → 100644
config/plugin.js
0 → 100644
config/plugin.local.js
0 → 100644
docs/images/admin.png
0 → 100644
144.5 KB
docs/images/egg-webpack.png
0 → 100644
234.4 KB
docs/images/iblog.png
0 → 100644
85.9 KB
docs/images/vue-mutil-page.png
0 → 100644
157.8 KB
docs/images/vue-single-page.png
0 → 100644
187.9 KB
docs/images/webpack-build.png
0 → 100644
192.9 KB
docs/images/webpack.png
0 → 100644
328.5 KB
docs/issue_template.md
0 → 100644
docs/perform.md
0 → 100644
| { | { | ||
| "name": "nodejs", | "name": "Blog", | ||
| "version": "1.0.0", | "version": "1.0.0", | ||
| "description": "", | "description": "基于 easywebpack-vue 和 egg-view-vue-ssr 插件的 Egg + Vue SSR 服务端渲染同构工程骨架项目", | ||
| "main": "index.js", | |||
| "scripts": { | "scripts": { | ||
| "dev": "node index.js", | "dev": "egg-bin dev", | ||
| "test": "echo \"Error: no test specified\" && exit 1" | "start": "egg-scripts start", | ||
| "debug": "egg-bin debug", | |||
| "clean": "easy clean all", | |||
| "build": "easy build prod", | |||
| "lint": "eslint .", | |||
| "fix": "eslint --fix .", | |||
| "ii": "npm install --registry https://registry.npm.taobao.org", | |||
| "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s" | |||
| }, | }, | ||
| "keywords": [], | |||
| "author": "", | |||
| "license": "ISC", | |||
| "dependencies": { | "dependencies": { | ||
| "@types/node": "^18.0.6", | "axios": "^0.18.1", | ||
| "node-fetch": "^3.2.6" | "codemirror": "^4.13.0", | ||
| } | "cross-env": "^5.0.0", | ||
| "egg": "^2.1.0", | |||
| "egg-bin": "^4.3.7", | |||
| "egg-cors": "^2.0.0", | |||
| "egg-logger": "^1.5.0", | |||
| "egg-scripts": "^2.5.1", | |||
| "egg-validate": "^1.0.0", | |||
| "egg-view-vue-ssr": "^3.2.0", | |||
| "element-ui": "^2.0.8", | |||
| "extend": "~3.0.0", | |||
| "font-awesome": "^4.7.0", | |||
| "lodash": "^4.17.4", | |||
| "lodash-id": "^0.14.0", | |||
| "lowdb": "^1.0.0", | |||
| "mockjs": "^1.0.1-beta3", | |||
| "moment": "^2.17.1", | |||
| "shortid": "^2.2.8", | |||
| "showdown": "^1.8.6", | |||
| "simplemde": "^1.11.2", | |||
| "vue": "^2.5.0", | |||
| "vue-hot-reload-api": "^2.1.0", | |||
| "vue-i18n": "^8.1.0", | |||
| "vue-material-input": "^1.2.0", | |||
| "vue-router": "^3.0.1", | |||
| "vuex": "^3.0.1", | |||
| "vuex-router-sync": "^5.0.0" | |||
| }, | |||
| "devDependencies": { | |||
| "@easy-team/easywebpack-cli": "^4.0.0", | |||
| "@easy-team/easywebpack-vue": "^4.0.0", | |||
| "babel-plugin-component": "^1.1.1", | |||
| "egg-logview": "^1.0.0", | |||
| "egg-webpack": "^4.4.1", | |||
| "egg-webpack-vue": "^2.0.0", | |||
| "eslint": "^4.19.1", | |||
| "eslint-config-egg": "^5.0.0", | |||
| "eslint-plugin-vue": "^4.4.0", | |||
| "ip": "^1.1.5" | |||
| }, | |||
| "engines": { | |||
| "node": ">=8.0.0" | |||
| }, | |||
| "ci": { | |||
| "version": "8, 10" | |||
| }, | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "git+https://github.com/easy-team/egg-vue-webpack-boilerplate.git" | |||
| }, | |||
| "author": "hubcarl@126.com", | |||
| "license": "MIT", | |||
| "homepage": "https://github.com/easy-team/egg-vue-webpack-boilerplate", | |||
| "webpack": { | |||
| "loaders": {} | |||
| } | } | ||
| } | |||
| \ No newline at end of file |
test/event.js
0 → 100644
test/glob.js
0 → 100644
test/node8.js
0 → 100644
test/path.js
0 → 100644
test/resolve.js
0 → 100644
test/shell.js
0 → 100644
test/spawn.js
0 → 100644
test/vue.html
0 → 100644
webpack.config.js
0 → 100644