3.0.0 ā€¢ Published 3 years ago

typescript-vue-starter v3.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

Vue.js with TypeScript's application generator.

šŸ§ What is Vue?

Vue is a progressive framework for building user interfaces.

Unlike other monolithic frameworks, Vue is designed from the ground up to be incrementally adoptable.

The core library is focused on the view layer only, and is easy to pick up and integrate with other libraries or existing projects.

šŸ¤” Why typescript-vue-starter?

currently vue3 has greatly enhanced TypeScript support.

However, the @vue/cli module has limitations due to various design patterns and template structures,

so it was created by combining modules that are useful in practice.

šŸš€ Quick Start

Install with the npm global package

$ npm install -g typescript-vue-starter

Run npx to install the package

npx is a tool in the JavaScript package management module, npm.

This is a tool that allows you to run the npm package on a single run without installing the package.

If you don't specify a project name, the default typescript-vue-starter will be used instead.

$ npx typescript-vue-starter "project name"

Choose the template you want. We will create more templates later.

Select a templates

Start your typescript-vue-starter app in development mode at http://localhost:8080/

$ cd "project name" && npm run serve

šŸŽ  Available commands for the server.

  • Run the Server : npm run serve.
  • Build Static File: npm run build.
  • Check for linting errors: npm run lint.
  • Fix linting errors: npm run lint:fix.

šŸ—‚ Code Structure (default)

ā”‚
ā”œā”€ā”€ /public
ā”‚   ā”œā”€ā”€ favicon.ico
ā”‚   ā””ā”€ā”€ index.html
ā”‚
ā”œā”€ā”€ /src
ā”‚   ā”œā”€ā”€ /assets
ā”‚   ā”‚   ā””ā”€ā”€ logo.png
ā”‚   ā”‚
ā”‚   ā”œā”€ā”€ /components
ā”‚   ā”‚   ā””ā”€ā”€ HelloWorld.vue
ā”‚   ā”‚
ā”‚   ā”œā”€ā”€ /helpers
ā”‚   ā”‚   ā”œā”€ā”€ common.ts
ā”‚   ā”‚   ā”œā”€ā”€ error.ts
ā”‚   ā”‚   ā””ā”€ā”€ http.ts
ā”‚   ā”‚
ā”‚   ā”œā”€ā”€ /locales
ā”‚   ā”‚   ā”œā”€ā”€ ENG.json
ā”‚   ā”‚   ā””ā”€ā”€ KOR.json
ā”‚   ā”‚
ā”‚   ā”œā”€ā”€ /mixins
ā”‚   ā”‚   ā””ā”€ā”€ index.ts
ā”‚   ā”‚
ā”‚   ā”œā”€ā”€ /plugins
ā”‚   ā”‚   ā””ā”€ā”€ i18n.ts
ā”‚   ā”‚
ā”‚   ā”œā”€ā”€ /router
ā”‚   ā”‚   ā””ā”€ā”€ index.ts
ā”‚   ā”‚
ā”‚   ā”œā”€ā”€ /store
ā”‚   ā”‚   ā”œā”€ā”€ /users
ā”‚   ā”‚   ā”‚   ā””ā”€ā”€ index.ts
ā”‚   ā”‚   ā”‚
ā”‚   ā”‚   ā”œā”€ā”€ actions.ts
ā”‚   ā”‚   ā”œā”€ā”€ getters.ts
ā”‚   ā”‚   ā”œā”€ā”€ index.ts
ā”‚   ā”‚   ā”œā”€ā”€ interface.ts
ā”‚   ā”‚   ā”œā”€ā”€ mutations-types.ts
ā”‚   ā”‚   ā”œā”€ā”€ mutations.ts
ā”‚   ā”‚   ā””ā”€ā”€ states.ts
ā”‚   ā”‚
ā”‚   ā”œā”€ā”€ /views
ā”‚   ā”‚   ā”œā”€ā”€ About.vue
ā”‚   ā”‚   ā””ā”€ā”€ Home.vue
ā”‚   ā”‚
ā”‚   ā”œā”€ā”€ App.vue
ā”‚   ā”œā”€ā”€ main.ts
ā”‚   ā”œā”€ā”€ shims-tsx.d.ts
ā”‚   ā”œā”€ā”€ shims-vue.d.ts
ā”‚   ā””ā”€ā”€ types.d.ts
ā”‚
ā”œā”€ā”€ .browserslistrc
ā”œā”€ā”€ .dockerignore
ā”œā”€ā”€ .editorconfig
ā”œā”€ā”€ .eslintrc.js
ā”œā”€ā”€ .gitignore
ā”œā”€ā”€ babel.config.js
ā”œā”€ā”€ docker-compose.yml
ā”œā”€ā”€ Dockerfile
ā”œā”€ā”€ Makefile
ā”œā”€ā”€ nginx.conf
ā”œā”€ā”€ package.json
ā””ā”€ā”€ tsconfig.json

šŸ“¬ Recommended Commit Message

WhenCommit Message
Add functionāš”ļø Add function
Fix bugšŸž Fix bug
RefactoringšŸ›  Refactoring
Add packagešŸ“¦ Add package
Fix readmešŸ“š Fix readme
Improvements stylešŸ‘ Improvements style
New ReleasesšŸŽ‰ Releases

šŸ’³ License

MIT

šŸ¤ Contributors