Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
dribbblejs
Advanced tools
A promise based, Typescript-first Dribbble API library.
$ yarn add dribbblejs
$ npm install dribbblejs
import { Dribbble } from "dribbblejs";
const dribbble = new Dribbble({
authToken: "xxxxxxxx"
});
Official User API Documentation
dribbble.user.get()
Official Projects API Documentation
dribbble.projects.list()
dribbble.projects.create({
name: 'Project name', // *Required*
description: 'Project description' // Optional
})
id
dribbble.projects.update('883377', {
name: 'New project name', // Optional
description: 'New project description' // Optional
})
id
dribbble.projects.delete('883377')
Official Shots API Documentation
dribbble.shots.list()
id
dribbble.shots.get('6432565')
dribbble.shots.create({
image: imageFile // *Required*
title: 'Shot title', // *Required*
description: 'Shot description', // Optional
low_profile: true, // Optional
rebound_source_id: 6432542, // Optional
scheduled_for: 1582391638790, // Optional
tags: ['ui', 'illustration'], // Optional
team_id: 3818924 // Optional
})
id
dribbble.shots.update('6432565', {
title: 'New shot title', // Optional
description: 'New shot description', // Optional
low_profile: true, // Optional
rebound_source_id: 6432542, // Optional
scheduled_for: 1582391638790, // Optional
tags: ['ui', 'illustration'], // Optional
team_id: 3818924 // Optional
})
id
dribbble.shots.delete('6432565')
Official Attachments API Documentation
shot
dribbble.attachments.create('6432565', {
file: attachmentFile // *Required*
})
id
for a shot
dribbble.attachments.delete('1376676', '6432565')
Dribbblejs is MIT licensed.
Version 0.0.19 (2020-3-7)
FAQs
##### 🤖 Full Typescript support
The npm package dribbblejs receives a total of 0 weekly downloads. As such, dribbblejs popularity was classified as not popular.
We found that dribbblejs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.