You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

sample-package-esqueleton

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sample-package-esqueleton - npm Package Compare versions

Comparing version

to
1.2.1

index.js

2

package.json
{
"name": "sample-package-esqueleton",
"version": "1.2.0",
"version": "1.2.1",
"description": "A simple esqueleton package meant for starter packages",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -0,1 +1,2 @@

# Sample NPM Package - Esqueleton

@@ -5,4 +6,15 @@

A simple starter package to create your own npm module with API requests.
A simple starter package to create your own npm module with API requests. This module was created with the intention to teach new node developers on how to create a module that uses an Apikey.
## Quick Use
```
const { SampleApiRequestHandler } = require('sample-package-esqueleton/src');
const client = new SampleApiRequestHandler();
client
.getApiRequest({ id: '1' })
.then(data => console.log(data));
```
## Getting Started

@@ -9,0 +21,0 @@