aspnet-starter-kit
Cross-platform web development with Visual Studio Code, C#, F#, JavaScript, ASP.NET Core, EF Core, React (ReactJS), Redux, Babel. Single-page application boilerplate.
File Explorer
Download Latest Version (.zip)- launch.json
- settings.json
- tasks.json
- Button.js
- package.json
- Header.css
- Header.js
- Layout.css
- Layout.js
- Logo.js
- Navigation.js
- package.json
- Link.js
- package.json
- markdown-loader.js
- routes-loader.js
- About.js
- package.json
- ErrorPage.css
- ErrorPage.js
- package.json
- Home.js
- package.json
- history.js
- main.js
- router.js
- routes.json
- store.js
- .eslintrc
- test.js
- how-to-integrate-material-design-lite.md
- how-to-use-sass.md
- README.md
- routing-and-navigation.md
- apple-touch-icon.png
- browserconfig.xml
- crossdomain.xml
- favicon.ico
- humans.txt
- robots.txt
- tile-wide.png
- tile.png
- AccountController.cs
- HomeController.cs
- DatabaseContext.cs
- User.cs
- Index.cshtml
- appsettings.json
- server.csproj
- Startup.cs
- web.config
- SampleTest.cs
- server.test.csproj
- .editorconfig
- .gitattributes
- .gitignore
- .travis.yml
- CONTRIBUTING.md
- jsconfig.json
- LICENSE.txt
- package.json
- README.md
- run.js
- starter-kit.sln
- webpack.config.js
- yarn.lock
๐ Installation Guide
git clone https://github.com/kriasoft/aspnet-starter-kit
Downloads the entire project code from GitHub to your computer.
cd aspnet-starter-kit
Moves into the project folder you just downloaded.
2. .NET
Medium Recommendedcd server.test
This project's files live in a subfolder, so move into it first.
dotnet restore
Downloads the packages the project depends on.
dotnet run
Builds the project and runs it immediately.
3. Node.js
Easyโโโ package.json # The list of project dependencies and NPM scripts
Type this command into your terminal and run it.
$ npm install -g yo
Downloads and installs the libraries listed in package.json.
$ npm install -g generator-aspnetcore
Downloads and installs the libraries listed in package.json.
$ npm install # Install both Node.js and .NET Core dependencies
Downloads and installs the libraries listed in package.json.
$ node run # Compile and lanch the app, same as running: npm start
Starts the development/run server.
Pulled directly from this repo's README.
