https://github.com/schafeld/typescript-vue-app
Demo app using Vue.js with Typescript [WiP]
https://github.com/schafeld/typescript-vue-app
Last synced: 7 months ago
JSON representation
Demo app using Vue.js with Typescript [WiP]
- Host: GitHub
- URL: https://github.com/schafeld/typescript-vue-app
- Owner: schafeld
- License: mit
- Created: 2021-01-16T11:08:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-18T15:46:18.000Z (over 5 years ago)
- Last Synced: 2025-03-14T16:47:36.493Z (over 1 year ago)
- Language: Vue
- Size: 2.82 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# typescript-vue-app [WiP]
Demo app using Vue.js with Typescript. No specific purpose yet, just an exercise/PoC so far.
Maybe adding a demo micro-service, see *Kotlin* below
## Notes
### Development with Vue
Check out and install with ```npm install```.
Start project with ```npm run serve```.
### Getting started with Vue and Typescript
Good tutorials on getting started with Vue and Typescript
- https://bezkoder.com/vue-typescript-crud/
(But... do you really _need_ Typescript for your specific project? Is it likely to become as complex as Google Maps or Docs, go ahead use it. Are you going for a plain shop frontend, think about development and onboarding speed that come as benefits of lower complexity.)
### Getting started with Kotlin
See official documentation for [Getting Started with Command Line](https://kotlinlang.org/docs/tutorials/command-line.html).
For MacOS:
```shell
$ brew update
$ brew install kotlin
```
Write a simple HelloWorld called ```hello.kt```,
then compile
```shell
$ kotlinc hello.kt -include-runtime -d hello.jar
```
and run
```shell
$ java -jar hello.jar
```
See [documentation](https://kotlinlang.org/docs) for more.