Socket
Book a DemoInstallSign in
Socket

dsmcdn

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dsmcdn

Upload your files easily

latest
npmnpm
Version
1.5.1
Version published
Maintainers
2
Created
Source

DSMCDN Uploader

Installing

Global

Yarn yarn global add dsmcdn

Npm npm install -g dsmcdn

Library

Yarn npm install dsmcdn

Npm yarn add dsmcdn

Global Usage

Usage: dsmcdn -t [str] -e [str] -f [str[]] -u [str]
-p [pwd]

Options:
  --help     Show help                       [boolean]
  --version  Show version number             [boolean]
  -t         team directory                 [required]
  -e         environment directory          [required]
  -b         build version
  -d         Absolute directory
  -f         list of files          [array] [required]
  -u         sftp username                  [required]
  -p         sftp password                  [required]
  -h         sftp host
  -w         sftp port

Uploading files

Basic Usage

dsmcdn -u username -p password -t mobileweb -e develop -f library.js

Uploads library js to cdn with with /username/mobileweb/develop/library.js

With Build Number

dsmcdn -u username -p password -t mobileweb -e develop -b 123 -f library.js

Uploads library js to cdn with with /username/mobileweb/develop/123/library.js

Absolute Directory

dsmcdn -u username -p password -t mobileweb -e develop -d /absolute -f library.js

Uploads library js to cdn with with /username/absolute/library.js

Multiple Files

dsmcdn -u username -p password -t mobileweb -e develop -f library.js anotherlibrary.js

Uploads library js to cdn with with /username/mobileweb/develop/library.js Uploads library js to cdn with with /username/mobileweb/develop/anotherlibrary.js

Library Usage

Options

const dsmcdn = require('dsmcdn');
const options = {
  team: 'mobileweb',
  environment: 'dev,
  buildVersion: '123', //optional
  user: 'username',
  password: 'password',
}

Single file

dsmcdn.upload('~/acg/desktop/index.js', options);

Array of files

dsmcdn.upload(['~/acg/desktop/index.js', '~/acg/desktop/library.json'], options);

Object for custom configuration

dsmcdn.upload({
    source: '~/acg/desktop/index.js',
    remote: 'index.min.js'
}, options);
//File will be available with url: `/username/mobileweb/dev/index.min.js`

Multiple objects for custom configuration

dsmcdn.upload([
  {
    source: '~/acg/desktop/index.js',
    remote: 'index.min.js'
  },
  {
    source: '~/acg/desktop/library.json',
    remote: 'library.min.json'
  }
], options);
//File will be available with url: `/username/mobileweb/dev/index.min.js`
//File will be available with url: `/username/mobileweb/dev/library.min.json

FAQs

Package last updated on 19 Jul 2018

Did you know?

Socket

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.

Install

Related posts