An object-oriented JavaScript wrapper for the Pastebin API.
The module exports 8 classes:
const { PastebinClient, PastebinError, Paste, User, ClientUser, PasteStore, UserStore, UserPasteStore } = require("pastebin.js")
The client used to interact with the Pastebin API.
new PastebinClient(apiKey, username, password)
name | description | type | default |
---|---|---|---|
apiKey | Your Pastebin API key | string | null |
username | Your Pastebin username | string | null |
password | Your Pastebin password | string | null |
Your Pastebin credentials.
Type: Object
Your Pastebin API key.
Type: ?string
Your Pastebin username.
Type: ?string
Your Pastebin password.
Type: ?string
The user the client logged in with, if it has.
Type: ?ClientUser
All of the cached users.
Type: ?UserStore
All of the cached pastes.
Type: ?PasteStore
Login with the stored username and password and store the user key.
Thrown when there's an error related to the Pastebin API or pastebin.js.
new PastebinError(message)
name | description | type | default |
---|---|---|---|
message | The error message | string |
The error message.
A Pastebin paste.
new Paste(client, data)
name | description | type | default |
---|---|---|---|
client | The client used to get this paste | PastebinClient | |
data | Object | ||
data.key | The key of the paste | string | |
data.title | The title of the paste | string | null |
data.author | The author of the paste | User | null |
data.content | The content of the paste | string | null |
data.size | The length of the content of the paste | number | null |
data.date | The date the paste was posted | Date | null |
data.format | The format of the paste | string | null |
data.privacy | The privacy setting of the paste | number | null |
data.expiry | The expiry time of the paste | string | null |
data.expiryDate | The expiry date of the paste | Date | null |
data.hits | The number of times anyone saw the paste | number | null |
The client used to get this paste.
Type: PastebinClient
The key of this paste.
Type: string
The URL of this paste.
Type: string
The title of this paste.
Type: ?string
The author of this paste.
Type: ?User
The content of this paste.
Type: ?string
The length of the content of this paste.
Type: ?number
The date this paste was posted.
Type: ?Date
The format of this paste.
Type: ?string
The privacy setting of this paste.
Type: ?number
The expiry time of this paste.
Type: ?string
The expiry date of this paste.
Type: ?Date
The number of times anyone saw this paste.
Type: ?number
Fetch the content of this paste, and store it in the cache.
Delete this paste.
A Pastebin user.
new User(client, username)
name | description | type | default |
---|---|---|---|
client | The client used to get this paste | PastebinClient | |
username | The user's username | string |
The client used to get this user.
Type: PastebinClient
This user's username.
Type: string
Whether this user is the same as the client's user.
Type: boolean
The Pastebin user of the logged in client.
new ClientUser(client, data)
name | description | type | default |
---|---|---|---|
client | The client used to get this paste | PastebinClient | |
data | Object | ||
data.username | The user's username | string | |
data.format | The user's format setting | string | null |
data.expiry | The user's expiry setting | string | null |
data.avatarURL | The user's avatar URL | string | null |
data.privacy | The user's privacy setting | number | null |
data.website | The user's website | string | null |
data.email | The user's e-mail | string | null |
data.location | The user's location | string | null |
data.pro | Whether the user is a PRO account | boolean | null |
This user's username.
Type: string
This user's format setting.
Type: ?string
This user's expiry setting.
Type: ?string
This user's avatar URL.
Type: ?string
This user's privacy setting.
Type: ?number
This user's website.
Type: ?string
This user's e-mail.
Type: ?string
This user's location.
Type: ?string
Whether this user is a PRO account.
Type: ?boolean
All of this user's cached pastes.
Type: ?UserPasteStore
A structure that holds all of the cached pastes.
new PasteStore(client, entries)
name | description | type | default |
---|---|---|---|
client | The client the store belongs to | PastebinClient | |
entries | Array<Array<string, Paste>> | null |
The client this store belongs to.
Type: PastebinClient
Fetch a paste by its key, and store it in the cache.
name | description | type | default |
---|---|---|---|
key | The paste's key | string |
Create a paste, and store it in the cache.
name | description | type | default |
---|---|---|---|
content | The paste's content | any | |
options | Array<Array<string, Paste>> | null |
|
options.title | The paste's title | string | {} |
options.format | The paste's format | string | null |
options.privacy | The paste's privacy setting | number | null |
options.expiry | The paste's expiry time | string | null |
A structure that holds all of the cached users.
new UserStore(client, entries)
name | description | type | default |
---|---|---|---|
client | The client the store belongs to | PastebinClient | |
entries | Array<Array<string, Paste>> | null |
The client this store belongs to.
Type: PastebinClient
Fetch a user by their username, and store them in the cache.
name | description | type | default |
---|---|---|---|
username | The user's username | PastebinClient |
A structure that holds all of a user's cached pastes.
new UserPasteStore()
name | description | type | default |
---|---|---|---|
client | The client the store belongs to | PastebinClient | |
user | The user the store belongs to | User | |
entries | Array<Array<string, Paste>> | null |
The client this store belongs to.
Type: PastebinClient
The user this store belongs to.
Type: User
Fetch this user's pastes, and store them in the cache.
name | description | type | default |
---|---|---|---|
max | The maximum number of pastes to fetch | number | 50 |