Reputation: 261
I’m trying to figure out how to use vue cli. I have an idea for a project and would like to use the follow tech: vueJS, Typecript, and nodeJS(expressJS, socket.io)
How do I go about creating a template with all the config/json/vue files. There are just so many files and they need to be in specific places it gets confusing!
Does anyone know if a template for these types of projects? Or better yet a way to generate them?
Upvotes: 1
Views: 659
Reputation: 2073
EDIT: The way to create a new project template with Vue-CLI is by using the vue create
command. You can set your own techstack from there. If you need a more opinionated template, you can use the resources below.
Most well-known and detailed vue boilerplate around:
https://github.com/chrisvfritz/vue-enterprise-boilerplate
If it's too advanced/extensive for your project, there are plenty of examples/templates here:
https://github.com/vuejs/awesome-vue#examples
Upvotes: 2