- Install Dependencies
npm init npm install --save-dev ts-node typescript tslib express @types/express
- Create
server.ts
in root folder of your app.
const ts = require('typescript');
const fs = require('fs');
const path = require('path');
const prettier = require('prettier');
const { promisify } = require('util');
const { globFiles, clean, mkdirp } = require('aria-fs');
const writeFileAsync = promisify(fs.writeFile);
<template> | |
<div id="app"> | |
<div style="text-align:center;margin-bottom:20px;"> | |
<h1>Welcome to Vue</h1> | |
<img width="200" src="https://vuejs.org/images/logo.png" /> | |
</div> | |
<div class="cards"> | |
<div v-for="(profile, index) in profiles" v-bind:key="index"> | |
<Card :profile="profile" /> | |
</div> |
docker --version
to check the version of dockerdocker pull mongo
(this will get the latest version of mongodb)