Giter Site home page Giter Site logo

Comments (7)

ibalosh avatar ibalosh commented on August 16, 2024 3

Hi guys,

the reason for this is since from version 2, library was moved to Typescript and at the same time, default export "postmark" was removed.

Therefore the way to import the postmark library in case you are using ES6 way of importing would be the one @alex-sherwin mentioned:

import * as postmark from "postmark";
const client: postmark.ServerClient = new postmark.ServerClient("mykey");

(I think require part is not needed)

the full model of things that can be imported can be found here:

https://github.com/wildbit/postmark.js/blob/master/src/index.ts

Let us know if we should updated our docs, in migration and getting started sections to make this bit more clear:

https://github.com/wildbit/postmark.js/wiki/Migrating-from-1.x-to-2.x-version
https://github.com/wildbit/postmark.js/wiki/Getting-Started

We used in our examples the old style of import to make it work for most of the users.

from postmark.js.

maxfi avatar maxfi commented on August 16, 2024 2

@ibalosh It would probably be good to mention in https://github.com/ActiveCampaign/postmark.js/wiki/Getting-Started that the library should be imported as import * as postmark from "postmark".

from postmark.js.

natac13 avatar natac13 commented on August 16, 2024 1

@ibalosh It would probably be good to mention in https://github.com/ActiveCampaign/postmark.js/wiki/Getting-Started that the library should be imported as import * as postmark from "postmark".

I just ran into this same issue as well

from postmark.js.

ibalosh avatar ibalosh commented on August 16, 2024 1

thanks, I have updated the documentation to include ES6 style of imports too

from postmark.js.

alex-sherwin avatar alex-sherwin commented on August 16, 2024

Observing the same thing, to get some semblance of type safety when using TypeScript I'm working around like so:

const postmark = require("postmark");
import * as PostmarkTypes from "postmark";

const client: PostmarkTypes.ServerClient = new postmark.ServerClient("mykey");

from postmark.js.

jasonhargrove avatar jasonhargrove commented on August 16, 2024

Copied 1x code from one API into a second API and upgrade to 2x. The awkward thing is that errors were not reported. Thanks to this issue I figured it out.

Docs on these pages are not accurate:

https://github.com/wildbit/postmark.js/wiki/Templates
https://github.com/wildbit/postmark.js/wiki/Getting-Started

from postmark.js.

ibalosh avatar ibalosh commented on August 16, 2024

Hi @jasonhargrove

thank you for reporting this, we will see to make updates accordingly. Could you share details which part of the doc is inaccurate and caused silent errors when trying to migrate?

Please share library 2x version you were upgrading to, too.

Thanks,
Igor

from postmark.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.