https://github.com/heyskidee/random-pfp
npm package that gives random pfp links for user icons or other uses
https://github.com/heyskidee/random-pfp
image pfp pfps profile-picture profile-picture-generator random random-image random-image-generator random-pfp
Last synced: 5 months ago
JSON representation
npm package that gives random pfp links for user icons or other uses
- Host: GitHub
- URL: https://github.com/heyskidee/random-pfp
- Owner: HeySkidee
- Created: 2023-10-19T13:54:56.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-15T16:15:07.000Z (about 1 year ago)
- Last Synced: 2025-04-21T18:53:12.359Z (6 months ago)
- Topics: image, pfp, pfps, profile-picture, profile-picture-generator, random, random-image, random-image-generator, random-pfp
- Language: JavaScript
- Homepage: https://npmjs.com/package/random-pfp
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Random Pfp
A npm package that gives random 500x500 profile picture image links for user icons, avatars, or other creative uses
[](https://npmcharts.com/compare/random-pfp?minimal=true)
[](https://npmjs.org/package/random-pfp)### Installation:
```
npm i random-pfp
```### How to use:
```js
const pfp = require('random-pfp');console.log(pfp());
```or
```js
import pfp from 'random-pfp'console.log(pfp())
```### Example:
```js
const express = require('express');
const app = express();const pfp = require('random-pfp');
app.get('/', (req, res)=>{
res.send(``)
})app.listen(3000);
```