# lf-activity-stream **Repository Path**: mirrors_Financial-Times/lf-activity-stream ## Basic Information - **Project Name**: lf-activity-stream - **Description**: Livefyre Activity Stream API - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # lfActivityStream Livefyre Activity Stream API ### Usage ``` javascript const lfActivityStream = require('lfActivityStream'); let client = new lfActivityStream(network, key); let eventId = 1234; client .setOptions({ interval: 15 }) .makeRequest(eventId, (error, data, lastEventId) => { console.log('[lastEventId]\n' + lastEventId); console.log('[data]\n', data); }); ```