{"id":46649618,"url":"https://github.com/joaogervasoni/smppjs","last_synced_at":"2026-03-08T06:01:31.892Z","repository":{"id":236519516,"uuid":"792769234","full_name":"joaogervasoni/smppjs","owner":"joaogervasoni","description":"Modern approach to smpp protocol.","archived":false,"fork":false,"pushed_at":"2026-03-04T03:56:34.000Z","size":270,"stargazers_count":11,"open_issues_count":2,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-04T06:39:11.342Z","etag":null,"topics":["protocol","smpp","smppjs"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/joaogervasoni.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-27T14:26:01.000Z","updated_at":"2026-03-04T03:41:41.000Z","dependencies_parsed_at":"2024-05-03T02:59:24.209Z","dependency_job_id":"389e0585-0c13-4b0d-adea-bc1c005561c2","html_url":"https://github.com/joaogervasoni/smppjs","commit_stats":null,"previous_names":["smppjs/smppjs","joaogervasoni/smppjs"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/joaogervasoni/smppjs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joaogervasoni%2Fsmppjs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joaogervasoni%2Fsmppjs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joaogervasoni%2Fsmppjs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joaogervasoni%2Fsmppjs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joaogervasoni","download_url":"https://codeload.github.com/joaogervasoni/smppjs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joaogervasoni%2Fsmppjs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30245168,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-08T00:58:18.660Z","status":"online","status_checked_at":"2026-03-08T02:00:06.215Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["protocol","smpp","smppjs"],"created_at":"2026-03-08T06:01:14.875Z","updated_at":"2026-03-08T06:01:31.835Z","avatar_url":"https://github.com/joaogervasoni.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://github.com/joaogervasoni/smppjs/blob/master/images/smppjs-logo.png?raw=true\" alt=\"smppjs\"\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://eslint.org/\"\u003e\u003cimg src=\"https://img.shields.io/badge/Code--style-Eslint-fff32b?logo=Eslint\u0026style=flat-square\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://www.npmjs.com/package/smppjs\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/smppjs?color=fff32b\u0026logo=npm\u0026style=flat-square\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## About\n\nThis library is designed to provide a modern approach to smpp protocol, making easy interaction with the protocol.\n\n### Support \n- Node version `ES6, Node \u003e=8`\n- Typescript types\n\n## Getting started\n\n### Calling\n\n```js\nconst client = new Client({ interfaceVersion: 80, debug: false });\n```\n\nSimple to call and manage.\n\n### PDU\n\n```js\nclient.bindTransceiver({ systemId: 'system', password: 'pass' });\n```\n\nSimple and clean to call a PDU.\n\n## Examples\n\n### Basic use\n\n```js\nconst client = new Client({ \n    interfaceVersion: 80,\n    debug: true,\n    secure: { tls: false, unsafeBuffer: false },\n    enquireLink: {\n        auto: true,\n        interval: 10000,\n    },\n});\n\nclient.connect({ url: 'localhost:2775', });\n\nclient.on('connect', () =\u003e {\n    console.log('Connected');\n    \n    client.bindTransceiver({ systemId: 'system', password: 'pass' });\n    client.submitSm({ esmClass: 0x00, dataCoding: 0x08, destinationAddr: '0000000000', shortMessage: { message: 'Hello!', encoding: 'ascii' }  });\n});\n```\n\n### Debug\nYou can easily receive debug information using the `debug` event, so you can implement the logging system according to your wishes.\n\n```js\nconst client = new Client({ \n    interfaceVersion: 80,\n    // Set debug true\n    debug: true,\n    secure: { tls: false, unsafeBuffer: false },\n    enquireLink: {\n        auto: true,\n        interval: 10000,\n    },\n});\n\nclient.on('debug', (data) =\u003e {\n    // Use your favorite logger implementation here.\n    console.log(data);\n});\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoaogervasoni%2Fsmppjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoaogervasoni%2Fsmppjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoaogervasoni%2Fsmppjs/lists"}