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

taapi

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

taapi - npm Package Compare versions

Comparing version 1.0.0 to 1.0.2

.npmignore

29

index.js

@@ -1,3 +0,28 @@

exports.printMsg = function() {
console.log("TAAPI.IO API Wrapper");
const Client = require("./src/Client");
const Server = require("./src/Server");
const ExchangeData = require("./src/ExchangeData");
exports.describe = function() {
console.log("TAAPI.IO API Client and Wrapper");
}
exports.client = function(secret) {
const client = new Client(secret);
return client;
}
exports.exchangeData = function() {
const exchangeData = new ExchangeData();
return exchangeData;
}
exports.server = function(secret) {
const server = new Server(secret);
return server;
}
{
"name": "taapi",
"version": "1.0.0",
"version": "1.0.2",
"description": "A wrapper and a client for the TAAPI.IO API",

@@ -16,3 +16,10 @@ "main": "index.js",

"author": "TAAPI.IO <support@taapi.io> (https://taapi.io)",
"license": "ISC"
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"ccxt": "^1.18.1007",
"chalk": "^2.4.2",
"express": "^4.17.1",
"lodash": "^4.17.15"
}
}
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