Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes in documentation. Hello World commit #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This repo is a sample extractor that you can fork to implement your own. We will
Some ideas for extractors include:

- an extractor that checks whether the given web app is available as a native mobile app in a store such as Google Play Market
- an extractor that identifies which infrastructure provider the web app uses, e.g. Amazaon, Azure, App Engine etc.
- an extractor that identifies which infrastructure provider the web app uses, e.g. Amazon, Azure, App Engine etc.
- an extractor that uses the Twitter API to list all popular tweets about the app

For more ideas, check out the [StartHQ Roadmap](http://starthq.uservoice.com).
Expand Down
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
"been",
"working"
]
}
}
2 changes: 1 addition & 1 deletion examples/wot.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ var extract = module.exports = function(app, key) {

if (require.main === module) {
console.log(extract({url:process.argv[2]}, 'Your API key'));
}
}
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// example extractor that returns the number bytes in the app's index page
// example extractor that returns the number of bytes in the app's index page
var HttpClient = require("httpclient").HttpClient;

var extract = module.exports = function(app) {
Expand All @@ -7,4 +7,4 @@ var extract = module.exports = function(app) {

if (require.main === module) {
console.log(extract(require('./app.json')));
}
}