-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move react sample to separate directory * Rewrite react sample * Update node server sample * Move basic samples to separate directory * Update samples script * Bump react-scripts to 5.0.1 * Update project configuration to run on react-scripts 5 * Add typescript support * Add description for react sample * Add notification when server started
- Loading branch information
1 parent
06d265a
commit 6d7db3b
Showing
31 changed files
with
29,080 additions
and
11,239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ samples/*.js | |
samples/*.txt | ||
test/**/*.js | ||
test/**/testoutput.txt | ||
npm-debug.log | ||
npm-debug.log | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"args": {}, | ||
"headers": { | ||
"Host": "httpbin.org", | ||
"User-Agent": "vsts-node-api", | ||
"X-Amzn-Trace-Id": "Root=1-62d7a07a-61d28ace3597cb037f8ec7d2" | ||
}, | ||
"origin": "37.252.93.218", | ||
"url": "https://httpbin.org/get" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "typed-rest-client-basic-samples", | ||
"version": "1.0.0", | ||
"description": "Typed Rest Client Basic Samples", | ||
"private": true, | ||
"dependencies": { | ||
"typed-rest-client": "file:../../_build" | ||
}, | ||
"devDependencies": { | ||
"ts-node": "^10.9.1", | ||
"typescript": "^2.4.2" | ||
}, | ||
"scripts": { | ||
"start": "ts-node samples.ts" | ||
}, | ||
"author": "Microsoft Corporation", | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ async function run() { | |
catch (err) { | ||
console.error('Failed'); | ||
console.error(err.message); | ||
} | ||
} | ||
} | ||
|
||
run(); |
File renamed without changes.
Oops, something went wrong.