special-agent
v0.1.0
Published
Thin wrapper around a compilation of common user agent strings that one can query easily through tags.
Downloads
56
Maintainers
Readme
special-agent
Thin wrapper around a compilation of common user agent strings that one can query easily through tags.
This is particulary useful when you need to spoof your user agent when scraping/crawling...
Installation
You can install special-agent
with npm:
npm install special-agent
Usage
special-agent
lets you query its data through tags which are the same that the one produced by the ua-parser-js lib (lowercased and trimmed) plus the following ones:
legacy modern desktop bot downloader feed-reader search library
This is how you can use the library in node:
var specialAgent = require('special-agent');
// Whole data
specialAgent.agents;
// Available tags
specialAgent.tags;
#.find
specialAgent.find(tag, [nb]);
specialAgent.find(tags, [nb]);
// Example - get 5 user agents for 'windows'
var uastrings = specialAgent.find('windows', 5);
// Example - get every user agents for 'windows' and 'chrome'
var uastrings = specialAgent.find(['windows', 'chrome']);
#.findOne
specialAgent.findOne(tag);
specialAgent.findOne(tagS);
#.findRandom
specialAgent.findRandom(tag, [nb]);
specialAgent.findRandom(tags, [nb]);
#.findOneRandom
specialAgent.findOneRandom(tag);
specialAgent.findOneRandom(tagS);
Contribution
Contributions are more than welcome. Feel free to submit any pull request as long as you added unit tests if relevant and passed them all.
To install the development environment, clone your fork and use the following commands:
# Install dependencies
npm install
# Testing
npm test
# Building
npm run build
License
MIT for the code and the following for the data:
License: BSD 2 Clause
Copyright (c) 2015, Harald Hope
All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.