Skip to content

A Repo of instructions on how to start your own Microsoft Simp (MS) and Super Simp (MSS) Stack

Notifications You must be signed in to change notification settings

fabrv/microsoft-simp-stack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Microsoft Simp Stack

Stack for web development based on Microsoft technology.

(Inspired by this Ben Awad's video)

Microsoft Simp Stack (MS)

  • Typescript
  • NPM
  • Github
  • Azure

Get started:

  1. Create a folder and start your proyect:
mkdir im-a-simp
cd im-a-simp
echo "/node_modules/" > .gitignore
npm init -y
  1. Add typescript to your depencies
npm i typescript -s
  1. Modify the scripts in the package.json file:
"scripts": {
  "start": "node dist",
  "build": "tsc"
}
  1. Create a tsconfig.json file like the following:
{
  "compilerOptions": {
        "module": "commonjs",
        "esModuleInterop": true,
        "target": "es6",
        "noImplicitAny": true,
        "moduleResolution": "node",
        "sourceMap": true,
        "outDir": "dist",
        "baseUrl": ".",
        "paths": {
        "*": [
            "node_modules/*",
        ]
    }
  },
  "include": [
    "src/**/*"
  ]
}
  1. Create the following file structure:
|- src
|   |- index.ts

Or download the example proyect in ./example/im-a-simp

Microsoft Super Simp Stack (MSS)

  • Typescript
  • NPM
  • Github
  • Azure
  • Microsoft SQL Server

Getting started:

Use the same instructions as in MS but add the following dependency:

npm i mssql -s

Microsoft Ultra Simp Stack

  • C#
  • Razor Framework
  • Azure Devops
  • Azure
  • Microsoft SQL Server

Getting started:

  1. Have a beer
  2. Reconsider your life choices
  3. Use MS

About

A Repo of instructions on how to start your own Microsoft Simp (MS) and Super Simp (MSS) Stack

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published