Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gist

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gist - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

index.js

3

Changelog.md

@@ -0,1 +1,4 @@

### 0.1.1
- Using index.js as main in package.json. This is a standard in npm
- Updated package.json to work with npm >= 0.3
### 0.1.0

@@ -2,0 +5,0 @@ - Can create anonymous gist

17

package.json

@@ -1,9 +0,10 @@

{ name : "gist"
, description : "Gist api client for node.js"
, keywords : [ "gist", "github", "api", "package.json" ]
, version : "0.1.0"
, author : "Emerson Macedo <emerleite@gmail.com>"
, repository : { type: "git"
, url: "git://github.com/emerleite/node-gist.git" }
, engines : { node : ">=0.4.0" }
{ "name" : "gist"
, "description" : "Gist api client for node.js"
, "keywords" : [ "gist", "github", "api", "package.json" ]
, "version" : "0.1.1"
, "author" : "Emerson Macedo <emerleite@gmail.com>"
, "repository" : { "type" : "git"
, "url" : "git://github.com/emerleite/node-gist.git" }
, "main" : "index"
, "engines" : { "node" : ">=0.4.0" }
}

@@ -20,7 +20,8 @@ Node.js Gist client

------
> var gist = require('gist');
> gist.create('your gist content', function (url) {
> console.log(url); //prints created gist url
> });
var gist = require('gist');
gist.create('your gist content', function (url) {
console.log(url); //prints created gist url
});
Running tests

@@ -27,0 +28,0 @@ -------------

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc