Scarica i file del calendario iCal dall'URL di Facebook o dal numero dell'evento. Utilizza un service worker e può essere utilizzata offline e installata come PWA (Progressive Web App). https://mobilizon.it
Go to file
Ondrej Synacek 9d279fa890 add readme 2019-10-24 20:21:55 +02:00
lib add logger and daily rotating log files 2019-10-24 10:32:01 +02:00
logs add logger and daily rotating log files 2019-10-24 10:32:01 +02:00
.gitignore add logger and daily rotating log files 2019-10-24 10:32:01 +02:00
package-lock.json add logger and daily rotating log files 2019-10-24 10:32:01 +02:00
package.json add logger and daily rotating log files 2019-10-24 10:32:01 +02:00
readme.MD add readme 2019-10-24 20:21:55 +02:00

readme.MD

fb2iCal

This app allows you to download iCal calendar files from Facebook URL / event number.

You can use it as a service at https://fb2ical.ondrejsynacek.com or use this repository to launch your own instance.

The page that is served by the app uses a service worker and can be used offline and installed as PWA (Progressive Web App).

Development

It can run in environment with NodeJS 10 installed. It does not use Facebook API for retrieving information, instead it relies on crawling and scraping event URL. This means that it can stop working or the results might not be reliable so use this at your own risk.

Run development server: npm run start:dev.

Run development server with debugger npm run start:dev:inspect.

Deployment

The command npm run start will start the server in production mode.

The app can be run as stateless and does not need any persistent storage.

The app is automatically set up to create logs in logs/ directory each day but it's up to your environment if the file system is persisted.

HTTPS

App contains middleware that will redirect all traffic to HTTPS if the requests contain header X-FORWARDED-PROTO.

There are environment variables for setting pu SSL certificate from Let's Encrypt (acme challenge): CERT_ENDPOINT and CERT_SECRET.

This way you can set up the endpoint that will reply with secret and this should allow you to generate key pairs.