Skip to content

ny-tech-week-event-crawler

JavaScript

Scrape NY Tech Week events to JSON.

A browser-based event scraper for NY Tech Week. Extracts structured event data from the official website. Perfect for filtering events by host, location, time, and finding scheduling conflicts.

scraper browser events

[features]

Zero Dependencies

Runs directly in browser console

Structured Export

Clean JSON with all event details

Host Identification

Filter by company/organization

Batch Processing

Handles hundreds of events

[install]

# No installation needed
# 1. Go to tech-week.com/calendar
# 2. Open DevTools (F12)
# 3. Paste main.js in Console
# 4. Press Enter

[usage]

// Filter events by VCs
const vcEvents = events.filter(event =>
  ['a16z', 'Sequoia', 'Accel'].some(vc =>
    event.eventHost.toLowerCase().includes(vc.toLowerCase())
  )
);

// Group by location
const byLocation = events.reduce((acc, e) => {
  acc[e.eventLocation] = acc[e.eventLocation] || [];
  acc[e.eventLocation].push(e);
  return acc;
}, {});

[license]

This project is licensed under the MIT license.

[links]