Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jankaszel/add-to-pinboard
📬 Add items to Pinboard in an instant
https://github.com/jankaszel/add-to-pinboard
now pinboard puppeteer svelte
Last synced: 17 days ago
JSON representation
📬 Add items to Pinboard in an instant
- Host: GitHub
- URL: https://github.com/jankaszel/add-to-pinboard
- Owner: jankaszel
- Created: 2020-03-25T14:26:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-14T08:39:48.000Z (over 3 years ago)
- Last Synced: 2024-10-17T00:58:53.759Z (22 days ago)
- Topics: now, pinboard, puppeteer, svelte
- Language: Svelte
- Homepage:
- Size: 2.02 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Add to Pinboard 📬
[Pinboard's](https://pinboard.in/) UI for adding URLs is... simple. For one, you need to specify the entry title by yourself, while taking the website's title from its metadata would be more convenient. This small tool uses a headless Chromium browser via [Puppeteer](https://github.com/puppeteer/puppeteer/) to extract a website's metadata directly and provides a simple UI for easily adding URLs to Pinboard.
This project uses [Svelte](https://svelte.dev/) for building the frontend and Node.js on the backend. More precisely, frontend and backend are set up in a way to be run on the [Zeit Vercel](https://zeit.co/) infrastructure for easy deployments.
## Get started
With a recent Node.js (`>= 13.6`), install all dependencies via `npm install`. Then:
* Start a [Rollup](https://rollupjs.org) development server via `npm run dev` and navigate to [`http://localhost:5000/`](http://localhost:5000).
* Create a production build via `npm run build`.
* Run a local web server via `npm start`.By default, the development server will only respond to requests from localhost. To allow connections from other computers, edit the `sirv` commands in package.json to include the option `--host 0.0.0.0`.
As we use a particular version of Puppeteer that [works in serverless environments](https://zeit.co/blog/serverless-chrome), the backend for extracting a website's metadata (`/api/extract`) won't likely work on your local machine. Thus, all API calls should be pointing to a production service such as `https://add-to-pinboard.vercel.app/`, even in development. I'd be happy to fix that soon!
## Deploying to the web
For using [vercel](https://vercel.com/), install the CLI application if you haven't already:
```bash
npm install -g vercel
```Then, simply run `vercel` in the repository's root.