npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

webpack-sfdc-deploy-plugin

v1.1.11

Published

This is Webpack plugin for deploying static resource to Salesforce organizations.

Readme

Webpack SFDC Deploy Plugin

npm version Dependency Status js-semistandard-style license

NPM

This is a webpack plugin that simplifies deploying Salesforce static resources. The most common use case is when you are working on SPA using modern JavaScript frameworks and want to deploy the bundle right after it was built.

It is great to use the plugin with Webpack --watch parameter to deploy the application right after Webpack has updated it.

Maintainer: Ruslan Kurchenko @henkookdev

Installation

Install the plugin with npm:

$ npm install webpack-sfdc-deploy-plugin --save-dev

Usage

The plugin depends on useful JavaScript library that help to work with Salesforce API - jsforce.
To successfully deploy your resources to Salesforce you need to provide credentials.

Create a .js file with next format:

module.exports = {
    username:   '<[email protected]>',
    password:   '<password>',
    token:      '<security token>'
};

How to get a security token for your Salesforce org you can see here

Configuration

You need pass a hash of configuration options to SfdcDeployPlugin.
Required values are as follows:

  • credentialsPath: The relative path to .js file with credentials to you Salesforce org.
  • filesFolderPath: The relative path to the folder where placed files that need to be deployed.
  • staticResourceName: The title name that will be used for creating/updating the StaticResource on Salesforce org side.

Basic deploy

var path = require('path');
var SfdcDeployPlugin = require('webpack-sfdc-deploy-plugin');
var webpackConfig = {
  entry: 'index.js',
  output: {
    path: 'dist',
    filename: 'bundle.js'
  },
  plugins: [
      new SfdcDeployPlugin({
          credentialsPath: path.resolve(__dirname, 'sfdc-org-config.js'),
          filesFolderPath : path.resolve(__dirname, 'dist'),
          staticResourceName : 'AwesomeApplication'         
      })
  ]
};

This will create/update StaticResource with the name AwesomeApplication including all files that are in the dist folder using Salesforce credentials that are placed in sfdc-org-config.js file.

Additional options

The plugin has next optional configuration:

  • exclude: The array of Strings/RegExp to exclude files from deploying.
  • include: The array of Strings/RegExp to include only certain files to deploying. This option overrides exclude configuration.
  • srcFolderPath: The relative path to the src folder with Salesforce project metadata. If this option provided the plugin will search for old version of static resource and replace it with a newly bundled. (search for srcFolderPath/staticresources/staticResourceName)

Also, you can provide only String/RegExp instead of array - exclude: 'vendors.bundle.js'

Examples:

  • To exclude all JavaScript map files: exclude: /.js.map/
  • You can mix full file names with RegExp: exclude: ['vendor.bundle.js', /.js.map/]

Future plans

  • The ability to deploy folders that are placed in deployment folder, for example - asset folder
  • The option to use Salesforce Tooling API instead of Matadata API
  • The option to see logs about deployment process

Contribution

You're free to contribute to this project by submitting issues and/or pull requests. This project uses the semistandard code style.

License

This project is licensed under MIT.