Stack for web development based on Microsoft technology.
(Inspired by this Ben Awad's video)
- Typescript
- NPM
- Github
- Azure
- Create a folder and start your proyect:
mkdir im-a-simp
cd im-a-simp
echo "/node_modules/" > .gitignore
npm init -y- Add typescript to your depencies
npm i typescript -s- Modify the scripts in the
package.jsonfile:
"scripts": {
"start": "node dist",
"build": "tsc"
}- Create a
tsconfig.jsonfile like the following:
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "es6",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"*": [
"node_modules/*",
]
}
},
"include": [
"src/**/*"
]
}- Create the following file structure:
|- src
| |- index.ts
Or download the example proyect in ./example/im-a-simp
- Typescript
- NPM
- Github
- Azure
- Microsoft SQL Server
Use the same instructions as in MS but add the following dependency:
npm i mssql -s- C#
- Razor Framework
- Azure Devops
- Azure
- Microsoft SQL Server
- Have a beer
- Reconsider your life choices
- Use MS
