Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pulkit21/wappalyzer
Detect the server side language used for the website
https://github.com/pulkit21/wappalyzer
javascript ruby shell
Last synced: about 2 hours ago
JSON representation
Detect the server side language used for the website
- Host: GitHub
- URL: https://github.com/pulkit21/wappalyzer
- Owner: pulkit21
- Created: 2016-03-03T10:28:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-23T14:27:55.000Z (over 3 years ago)
- Last Synced: 2024-10-19T03:42:53.079Z (about 1 month ago)
- Topics: javascript, ruby, shell
- Language: JavaScript
- Homepage: https://rubygems.org/gems/wappalyzer
- Size: 67.4 KB
- Stars: 12
- Watchers: 1
- Forks: 20
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Wappalyzer
This is merely a port of the javascript parts of Wappalyzer extension for Firefox and Chrome. It analyzes a url and tries to guess what software it uses (like server software, CMS, framework, programming language).
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'wappalyzer'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install wappalyzer
# Usage
```
url = "https://www.heroku.com/"
Wappalyzer::Detector.new.analyze(url)
```## Output
```
{
"Cowboy" => {
"categories" => [
[0] "web-frameworks",
[1] "web-servers"
],
"confidence" => 100,
"version" => ""
},
"Google Tag Manager" => {
"categories" => [
[0] "tag-managers"
],
"confidence" => 100,
"version" => ""
},
"Ruby on Rails" => {
"categories" => [
[0] "web-frameworks"
],
"confidence" => 50,
"version" => ""
},
"Erlang" => {
"categories" => [
[0] "programming-languages"
],
"confidence" => 100,
"version" => ""
},
"Ruby" => {
"categories" => [
[0] "programming-languages"
],
"confidence" => 50,
"version" => ""
}
}
```## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/pulkit21/wappalyzer. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.