Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

scully-plugin-meetup

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scully-plugin-meetup

The `scully-plugin-meetup` is a `router` plugin for [Scully](http://scully.io/) that fetches data from the Meetup Event API durigin route discovery. Scully uses the results of the Meetup Event API to render static files for each event.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

scully-plugin-meetup

The scully-plugin-meetup is a router plugin for Scully that fetches data from the Meetup Event API durigin route discovery. Scully uses the results of the Meetup Event API to render static files for each event.

📦 Installation

To install this plugin with npm run

$ npm install scully-plugin-meetup --save-dev

Usage

Your app has should have an Angular route configured with the path event/:eventId. Scully needs help understanding the route parameter :eventId.

The following is an example of how you could use the scully-plugin-meetup to get eventIds pre-rendered based on the Meetup Event API.

// scully.config.ts
export const config: ScullyConfig = {
  // Add the following to your file
  routes: {
    '/event/:eventId': {
      type: 'meetup',
      eventId: {
        name: 'YOUR_MEETUP_GROUP_NAME',
        property: 'id',
      },
    },
  },
};

Example of configuration

The above example tells Scully to use the meetup plugin for fetching some the data via HTTP whenever it finds a route matching /event/:eventId. The Meetup plugin plucks the provided property name from each of the items and will generate static pages based on all of the events that are in the result.

It is possible to configure the meetup plugin, below an example where you will only get the lastest 10 events from the past.

// scully.config.ts
export const config: ScullyConfig = {
  // Add the following to your file
  routes: {
    '/event/:eventId': {
      type: 'meetup',
      eventId: {
        name: 'YOUR_MEETUP_GROUP_NAME',
        property: 'id',
        amount: 10,
        status: `past`,
      },
    },
  },
};
Configuration propertyDescriptionExample values
nameThe name of your meetup groupDutch-Angular-Group
AmountThe amount of events the api needs to return10 (max 100)
StatusThe status of an event, this can be past or upcomingpast
SortingA function that handles the sorting of the event(eventA, eventB) => (eventA.date < eventB.date ? 1 : -1)

Keywords

FAQs

Package last updated on 26 Nov 2020

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc