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 🙏

© 2024 – Pkg Stats / Ryan Hefner

salesforce-import

v1.0.0

Published

Imports objects from SalesForce into our database

Downloads

2

Readme

The Great SalesForce Importer

Importing and exporting your dreams since 2018

What It Does

This service grabs all the interesting things from SalesForce every hour or so, massages it into a structure we like, and dumps it into our system. This is our ETL system for SalesForce to the Volta Cloud.

This service also contains the charging-data exporter, which ships aggregate kWh deliver per station back to SalesForce. This baby is bi-directional!

Import

For all variables, please see the template.yaml file for Lambda function SSM Parameter to Environment Variable mappings.

Running Locally - .json option

Create 2 files from env.local.json.template:

  1. env.local-integration.json
  2. env.local-production.json

These two files correspond to the package scripts for importing integration (SalesForce "fullcopy sandbox") and production data. yarn import:int for integration and yarn import:prod for production. The difference between these two scripts is which SalesForce instance they pull from. Production is the main SalesForce instance, while integration will pull from the Fullcopy sandbox instance. The fullcopy sandbox instance gets refreshed with production data at minimum every 29 days, so data can drift between the two and the sandbox will fall behind production.

Now you can run:

  1. yarn
  2. yarn build
  3. yarn import:prod or yarn import:int

NOTE: env.*.json file patterns are ignored by git.

Running Locally - shell env option

To run without using a env.local-*.json file, the following shell variables must be exported to your active shell.

DB_HOST
DB_NAME
DB_PASSWORD
DB_PORT
DB_USERNAME
ENV
SALESFORCE_LOGIN_URL
SALESFORCE_PASSWORD
SALESFORCE_SECURITY_TOKEN
SALESFORCE_USER

Now you can run:

  1. yarn
  2. yarn build
  3. yarn import

Development Best Practices

Importing something new, are you? Here are a few best practices which we've learned the hard way:

  1. Grab the Id property from your object in SalesForce and map it to a salesforce_id column in it's destination table. This relationship is the best way to ensure reliable upserts of your object in the future
  2. Avoid anything with the phrase LIN in it. This deeply ingrained technical debt has caused numerous issues through our history, including the Potato Famine.
  3. Add your object import to a new file, such as src/import/salesforce-mynewobject.ts. Separating SalesForce queries and mappings by file will make this mess of a repository far more sustainable going forward.