Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
scully-plugin-meetup
Advanced tools
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.
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.
To install this plugin with npm
run
$ npm install scully-plugin-meetup --save-dev
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 eventId
s 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',
},
},
},
};
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 property | Description | Example values |
---|---|---|
name | The name of your meetup group | Dutch-Angular-Group |
Amount | The amount of events the api needs to return | 10 (max 100) |
Status | The status of an event, this can be past or upcoming | past |
Sorting | A function that handles the sorting of the event | (eventA, eventB) => (eventA.date < eventB.date ? 1 : -1) |
FAQs
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.
The npm package scully-plugin-meetup receives a total of 2 weekly downloads. As such, scully-plugin-meetup popularity was classified as not popular.
We found that scully-plugin-meetup 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.