This commit is contained in:
Josh Black 2017-08-31 21:58:32 -06:00
commit 698555d6a4
4 changed files with 60 additions and 0 deletions

17
.gitignore vendored Normal file
View File

@ -0,0 +1,17 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
# dependencies
/node_modules
/bower_components
# IDEs and editors
/.idea
.project
.classpath
*.launch
.settings/
#System Files
.DS_Store
Thumbs.db

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

20
package.json Normal file
View File

@ -0,0 +1,20 @@
{
"name": "typescript-node-express-realworld-example-app",
"version": "0.0.0",
"description": "> ### [YOUR_FRAMEWORK] codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.",
"main": "app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec 'ts-node' ./app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gothinkster/realworld-starter-kit.git"
},
"author": "Josh Black",
"license": "ISC",
"bugs": {
"url": "https://github.com/gothinkster/realworld-starter-kit/issues"
},
"homepage": "https://github.com/gothinkster/realworld-starter-kit#readme"
}

23
readme.md Normal file
View File

@ -0,0 +1,23 @@
# ![RealWorld Example App](logo.png)
> ### [YOUR_FRAMEWORK] codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.
### [Demo](https://github.com/gothinkster/realworld)    [RealWorld](https://github.com/gothinkster/realworld)
This codebase was created to demonstrate a fully fledged fullstack application built with **[YOUR_FRAMEWORK]** including CRUD operations, authentication, routing, pagination, and more.
We've gone to great lengths to adhere to the **[YOUR_FRAMEWORK]** community styleguides & best practices.
For more information on how to this works with other frontends/backends, head over to the [RealWorld](https://github.com/gothinkster/realworld) repo.
# How it works
> Describe the general architecture of your app here
# Getting started
> npm install, npm start, etc.