New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@rammbulanz/golem

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@rammbulanz/golem

Fetch golem.de/ticker articles

latest
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

golem

Fetch golem.de/ticker articles

Note: It fetches the golem articles from plain html. If golem.de will change an important node, this module can be broken. Use github issue tracker to report it if it happens.

Install

npm install @rammbulanz/golem

Use

Include in javascript

var Golem = require("@rammbulanz/golem")

Include in typescript

import * as Golem from '@rammbulanz/golem'

Fetch articles

var articles = await Golem.getArticles();

Fetch artikle

var article = await Golem.getArticle("${ARTICLE_URL}");
// Article will be an object like 
{
	meta: {
		url: string,
		date: Date,
		author: string,
		keywords: string[]
	},
	title: string,
	content: string,
	plainHtml: string,
	// Array of URLs
	pictures: string[],
	// Array of URLs
	videos: string[]
}

FAQs

Package last updated on 07 Dec 2017

Did you know?

Socket

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.

Install

Related posts