To Bytes takes your binary data and turn it into something more readable. Base 64, hexadecimal, ASCII, UTF-8, C-like escape sequences, and more are supported. Double Encoded UTF-8 and byte order marks are detected.
VSCode + Volar (and disable Vetur).
TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need Volar to make the TypeScript language service aware of .vue types.
These commands assume you have a working NodeJS and npm environment set up.
# installing necessary dependencies
npm install
# compile and enable hot-reload for development
npm run dev
#type-check, compile and minify for a production deployment
npm run build
# lint code, before commiting changes
npm run lint
# run tests
npm run test