![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
mtproto-nodejs-client
Advanced tools
Telegram (MTProto) NodeJS client library for Node.js.
Based on alik0211/mtproto-core, rewritten to Typescript.
To simpplify code, browser support is removed.
npm install github:fedyk/mtproto-nodejs-client
Connect to Telegram servers
const api_id = 12345678 27563128
const api_hash = "abcdef1234567890abcdef1234567890"
const storage = createLocalStorage({
path: "storage.json"
})
const mtproto = new MTProto({
api_id: String(api_id),
api_hash: api_hash,
storage: storage
})
Sign in to your account
const phone_number = "+1234567890"
const phone_code_hash = "will_be_returned_on_sendCode"
const code = "can_be_found_in_the_telegram_app_after_calling_sendCode"
// step 1
sendCode().then(function(resp) {
console.log("phone_code_hash", resp.phone_code_hash)
})
// step 2
signIn(phone_code_hash, code).then(function(resp) {
console.log("phone_code_hash", resp.phone_code_hash)
})
function sendCode() {
return mtproto.call("auth.sendCode", {
api_hash,
api_id,
phone_number,
settings: {
_: "codeSettings"
}
})
}
function signIn(phone_code_hash: string, phone_code: string) {
return mtproto.call("auth.signIn", {
phone_number,
phone_code_hash,
phone_code,
})
}
Set updates listener
mtproto.updates.on("updateShort", console.log)
mtproto.updates.on("updateShortChatMessage", console.log)
mtproto.updates.on("updateShortMessage", console.log)
mtproto.updates.on("updateShortSentMessage", console.log)
mtproto.updates.on("updates", console.log)
mtproto.updates.on("updatesCombined", console.log)
mtproto.updates.on("updatesTooLong", console.log)
// call getState to start receiving updates
mtproto.call("updates.getState").then(function(state) {
console.log("state", state)
})
The library was initially created by @alik0211. I added TypeScript, removed browser support and adjusted code to focus only on Node.js support.
GPLv3
FAQs
Telegram API JS (MTProto) client library for Node.js
The npm package mtproto-nodejs-client receives a total of 0 weekly downloads. As such, mtproto-nodejs-client popularity was classified as not popular.
We found that mtproto-nodejs-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.