All Projects → clarkdo → Hare

clarkdo / Hare

Licence: other
🐇 Application boilerplate based on Vue.js 2.x, Koa 2.x, Element-UI and Nuxt.js

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Hare

Vue Blog
A single-user blog built with vue2, koa2 and mongodb which supports Server-Side Rendering
Stars: ✭ 586 (+127.13%)
Mutual labels:  koa2, yarn, vue2
Vue Admin Element
(Vue2 演示项目)物业后台管理系统 - ElementUI ( 基本结构已完成, 剩下的就是具体业务开发; 如有疑问请留言 )
Stars: ✭ 73 (-71.71%)
Mutual labels:  yarn, vue2, element-ui
Eagles
eagles for vue componets of silianpan
Stars: ✭ 95 (-63.18%)
Mutual labels:  koa2, vue2, element-ui
Vue Scscms
基于koa2+mysql+vue2.0+Element阳光内容管理系统,模范学习Demo
Stars: ✭ 284 (+10.08%)
Mutual labels:  koa2, vue2, element-ui
nodejs-koa-blog
基于 Node.js Koa2 实战开发的一套完整的博客项目网站
Stars: ✭ 1,611 (+524.42%)
Mutual labels:  koa2, nuxtjs, element-ui
vue-typescript-admin
Vue typescript 开发的基础模板,多页面支持,基础整合完毕。
Stars: ✭ 26 (-89.92%)
Mutual labels:  vue2, element-ui
koa-vue
前端vue+后端koa,数据库采用的mysql,开发完整的前后端项目
Stars: ✭ 18 (-93.02%)
Mutual labels:  vue2, koa2
element-ui-demo
A element-ui admin base on vue2
Stars: ✭ 18 (-93.02%)
Mutual labels:  vue2, element-ui
koa2-rest-scaffold
Koa2 RESTful API 脚手架。
Stars: ✭ 27 (-89.53%)
Mutual labels:  scaffold, koa2
modular
Scaffold a react monorepo and its component parts.
Stars: ✭ 13 (-94.96%)
Mutual labels:  yarn, scaffold
vue-methods-promise
Let Vue methods support return Promise
Stars: ✭ 35 (-86.43%)
Mutual labels:  vue2, ava
hoc-element-table
📦 A Vue 3.x Table Component built on Webpack 5
Stars: ✭ 26 (-89.92%)
Mutual labels:  vue2, element-ui
lumen-cms
GraphQL API-First CMS based on NodeJS and Vue 2, Nuxt and Vuetify
Stars: ✭ 77 (-70.16%)
Mutual labels:  vue2, nuxtjs
vue3-chat
2021👨‍🎓Vue2/3全家桶 + Koa+Socket+Vant3前后端分离移动端聊天应用。vue+node全栈入门项目
Stars: ✭ 46 (-82.17%)
Mutual labels:  vue2, koa2
element-schema-form
A schema-based element-ui form component for Vue2.x.
Stars: ✭ 31 (-87.98%)
Mutual labels:  vue2, element-ui
penework
Penetration Test Framwork
Stars: ✭ 24 (-90.7%)
Mutual labels:  vue2, element-ui
ableton-live-downloader
🎹 Downloads the desired 64-bit installer from any version of Ableton Live 11, 10, and 9.
Stars: ✭ 17 (-93.41%)
Mutual labels:  vue2, nuxtjs
demo
个人博客中用到的demo,和其他各种乱七八糟的demo
Stars: ✭ 57 (-77.91%)
Mutual labels:  koa2, element-ui
element-ui-saas-extend
基于ElementUI开发的SaaS业务扩展
Stars: ✭ 14 (-94.57%)
Mutual labels:  vue2, element-ui
task-manager
Open-source task manager based on Kanban. Made with vue.js, koa2, mongodb\mongoose.
Stars: ✭ 23 (-91.09%)
Mutual labels:  koa2, nuxtjs

Logo Application boilerplate based on Vue.js 2.x, Koa 2.x, Element-UI and Nuxt.js

CircleCI Windows Vulnerabilities JavaScript Style Guide ESLint Issues Stars License

Installation

$ git clone [email protected]:clarkdo/hare.git
$ cd hare
# install dependencies
$ yarn

Usage

Development

# serve with hot reloading at localhost:3000
$ yarn dev

Go to http://localhost:3000

Testing

# configure ESLint as a tool to keep codes clean
$ yarn lint
# use ava as testing framework, mixed with jsdom
$ yarn test

Production

# build for production and launch the server
$ yarn build
$ yarn start

Generate

# generate a static project
$ yarn generate

Analyze

# build and launch the bundle analyze
$ yarn analyze

Use PM

Further more features refer: PM2

# install pm2 globally
$ yarn global add pm2
# launch development server
$ yarn dev:pm2
# launch production server
$ yarn start:pm2
# Display all processes status
$ pm2 ls
# Show all information about app
$ pm2 show hare
# Display memory and cpu usage of each app
$ pm2 monit
# Display logs
$ pm2 logs
# Stop
$ pm2 stop hare
# Kill and delete
$ pm2 delete hare

Docker Dev

# build image
$ docker build -t hare-dev -f Dockerfile.dev ./
$ docker run -d -p 8888:3000 -e HOST=0.0.0.0 hare-dev

Go to http://localhost:8888

Docker Production

# build bundle
$ export NODE_ENV=''
$ yarn
$ yarn build
# install production dependencies (remove devDependencies)
$ yarn --prod
# build image
$ docker build -t hare-prod -f Dockerfile ./
$ docker run -d -p 8889:3000 -e HOST=0.0.0.0 hare-prod

Go to http://localhost:8889

Documentation

Vue.js documentation: https://vuejs.org/

Nuxt.js documentation: https://nuxtjs.org

Element-UI documentation: http://element.eleme.io

Koa documentation: https://github.com/koajs/koa

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].