Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jackmahoney/emaile2e-javascript-client
Test email integration with your app using MailSlurp
https://github.com/jackmahoney/emaile2e-javascript-client
email email-e2e end-to-end-testing inbox integration testing
Last synced: 19 days ago
JSON representation
Test email integration with your app using MailSlurp
- Host: GitHub
- URL: https://github.com/jackmahoney/emaile2e-javascript-client
- Owner: jackmahoney
- Created: 2017-12-12T12:10:50.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-27T14:50:03.000Z (about 6 years ago)
- Last Synced: 2024-11-30T18:10:19.646Z (25 days ago)
- Topics: email, email-e2e, end-to-end-testing, inbox, integration, testing
- Language: TypeScript
- Homepage: https://www.mailslurp.com
- Size: 16.2 MB
- Stars: 14
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
Environment
* Node.js
* Webpack
* BrowserifyLanguage level
* ES5 - you must have a Promises/A+ library installed
* ES6Module system
* CommonJS
* ES6 module systemIt can be used in both TypeScript and JavaScript. In TypeScript, the definition should be automatically resolved via `package.json`. ([Reference](http://www.typescriptlang.org/docs/handbook/typings-for-npm-packages.html))
### Building
To build an compile the typescript sources to javascript use:
```
npm install
npm run build
```### Publishing
First build the package then run ```npm publish```
### Consuming
navigate to the folder of your consuming project and run one of the following commands.
_published:_
```
npm install [email protected] --save
```_unPublished (not recommended):_
```
npm install PATH_TO_GENERATED_PACKAGE --save