Skip to content

Instantly share code, notes, and snippets.

@insin
Created March 13, 2025 21:57
Show Gist options
  • Save insin/532ad7769d6bf8d1005f762b9e1ac0f5 to your computer and use it in GitHub Desktop.
Save insin/532ad7769d6bf8d1005f762b9e1ac0f5 to your computer and use it in GitHub Desktop.
Get Twitter React state
function getState() {
let $reactRoot = document.querySelector('#react-root')
let wrapped = $reactRoot.firstElementChild['wrappedJSObject'] || $reactRoot.firstElementChild
let reactPropsKey = Object.keys(wrapped).find(key => key.startsWith('__reactProps'))
if (reactPropsKey) {
let state = wrapped[reactPropsKey].children?.props?.children?.props?.store?.getState()
if (state) return state
warn('React state not found')
} else {
warn('React prop key not found')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment