
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
angular-wikipedia-api-factory
Advanced tools
angularjs factory for wikipedia jsonp rest api requests
angular-wikipedia-api-factory is an angularjs module with a wikipedia api factory.
Author: Jonathan Hornung (JohnnyTheTank)
Install via either bower, npm or downloaded files:
bower install --save angular-wikipedia-api-factory
npm install --save angular-wikipedia-api-factory
Include dependencies in your HTML.
<script src="bower_components/angular-wikipedia-api-factory/dist/angular-wikipedia-api-factory.min.js"></script>
<script src="node_modules/angular-wikipedia-api-factory/dist/angular-wikipedia-api-factory.min.js"></script>
<script src="angular-wikipedia-api-factory.min.js"></script>
Add jtt_wikipedia
to your application's module dependencies
angular.module('app', ['jtt_wikipedia']);
Use the factory wikipediaFactory
angular.module('app')
.controller('appController', function($scope, wikipediaFactory){
wikipediaFactory.getArticle({
term: 'Oktoberfest'
}).then(function (_data) {
//on success
});
});
wikipediaFactory.searchArticles({
term: '<TERM>', // Searchterm
lang: '<LANGUAGE>', // (optional) default: 'en'
gsrlimit: '<GS_LIMIT>', // (optional) default: 10. valid values: 0-500
pithumbsize: '<PAGE_IMAGES_THUMBNAIL_SIZE>', // (optional) default: 400
pilimit: '<PAGE_IMAGES_LIMIT>', // (optional) 'max': images for all articles, otherwise only for the first
exlimit: '<EX_LIMIT>', // (optional) 'max': extracts for all articles, otherwise only for the first
exintro: '<EX_INTRO>', // (optional) '1': if we just want the intro, otherwise it shows all sections
}).then(function (_data) {
//on success
}).catch(function (_data) {
//on error
});
wikipediaFactory.searchArticlesByTitle({
term: '<TERM>', // Searchterm
lang: '<LANGUAGE>', // (optional) default: 'en'
gsrlimit: '<GS_LIMIT>', // (optional) default: 10. valid values: 0-500
pithumbsize: '<PAGE_IMAGES_THUMBNAIL_SIZE>', // (optional) default: 400
pilimit: '<PAGE_IMAGES_LIMIT>', // (optional) 'max': images for all articles, otherwise only for the first
exlimit: '<EX_LIMIT>', // (optional) 'max': extracts for all articles, otherwise only for the first
exintro: '<EX_INTRO>', // (optional) '1': if we just want the intro, otherwise it shows all sections
}).then(function (_data) {
//on success
}).catch(function (_data) {
//on error
});
wikipediaFactory.getArticle({
term: '<TERM>', // Searchterm
lang: '<LANGUAGE>', // (optional) default: 'en'
pithumbsize: '<PAGE_IMAGE_THUMBNAIL_SIZE>', // (optional) default: '400'
}).then(function (_data) {
//on success
}).catch(function (_data) {
//on error
});
bandsintown - dailymotion - facebook - flickr - footballdata - github - openweathermap - tumblr - vimeo - wikipedia - youtube
MIT
FAQs
angularjs factory for wikipedia jsonp rest api requests
The npm package angular-wikipedia-api-factory receives a total of 9 weekly downloads. As such, angular-wikipedia-api-factory popularity was classified as not popular.
We found that angular-wikipedia-api-factory demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.