Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Vuetify | 36,747 | 6,541 | 1,764 | 10 hours ago | 482 | September 15, 2022 | 1,360 | mit | TypeScript | |
🐉 Vue Component Framework | ||||||||||
30 Days Of Javascript | 34,404 | 4 days ago | 1 | January 25, 2022 | 225 | JavaScript | ||||
30 days of JavaScript programming challenge is a step-by-step guide to learn JavaScript programming language in 30 days. This challenge may take more than 100 days, please just follow your own pace. | ||||||||||
Awesome Cheatsheets | 32,903 | 12 hours ago | 85 | mit | JavaScript | |||||
👩💻👨💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file. | ||||||||||
Element Plus | 19,223 | 901 | 8 hours ago | 174 | September 16, 2022 | 1,253 | mit | Vue | ||
🎉 A Vue.js 3 UI Library made by Element team | ||||||||||
Codesandbox Client | 12,280 | 46 | 16 | 8 hours ago | 26 | March 11, 2021 | 363 | other | JavaScript | |
An online IDE for rapid web development | ||||||||||
Vue Native Core | 8,359 | 33 | 3 | a year ago | 18 | July 07, 2021 | 31 | mit | JavaScript | |
Vue Native is a framework to build cross platform native mobile apps using JavaScript | ||||||||||
Vue Cli Plugin Electron Builder | 3,983 | 203 | 45 | a day ago | 95 | January 22, 2022 | 58 | mit | JavaScript | |
Easily Build Your Vue.js App For Desktop With Electron | ||||||||||
Gerapy | 2,906 | 8 | 2 months ago | 47 | December 30, 2021 | 54 | mit | Python | ||
Distributed Crawler Management Framework Based on Scrapy, Scrapyd, Django and Vue.js | ||||||||||
Electron Vue Admin | 2,686 | a year ago | 50 | JavaScript | ||||||
vue electron admin template web: http://panjiachen.github.io/vue-admin-template | ||||||||||
Vue Cli4 Config | 2,669 | 4 months ago | 42 | JavaScript | ||||||
vue-cli4配置vue.config.js持续更新 |
Live Demo It might take a while to load if it's asleep.
You must have vue-cli installed.
npm install -g vue-cli
Create Project
vue init rlindskog/vueniverse {{ your-project-name }}
cd {{ your-project-name }}
npm install
Start a MongoDB database locally
npm run start-db
Stop the MongoDB database locally
npm run stop-db
Run in development
npm run dev
Build for production
npm run build
Run in production (runs the database and application in a subprocess)
npm run start
Stop production running (stops the database and application)
npm run stop
Start a Redis database locally (use this if you chose the redis session option)
$ wget http://download.redis.io/redis-stable.tar.gz
$ tar xvzf redis-stable.tar.gz
$ cd redis-stable
$ make
$ # wait for it to install...
$ sudo cp src/redis-server /usr/local/bin/
$ sudo cp src/redis-cli /usr/local/bin/
Then run
redis-server
Deploy with NOW
npm install -g now-cli
You will have to make a database else where, I recommend the Atlas free teir. When you do, paste the url to the DB_URL and a random SECRET variable to the secrets.json file.
Also, if you decided to use the Redis option instead of in-memory (highly recommended), then you will have to create a Redis session store else where as well. I recommend the Redis Labs free tier. Once you make your Redis session, add SESSION_HOST, SESSION_PORT, and SESSION_PASSWORD to the secrets.json file.
Then run...
npm run deploy
If you have any problems, please don't hesitate to create an issue!
FUTURE TODO
Pull requests welcome!