Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doesn't work in React 18 #23

Closed
hidaytrahman opened this issue Oct 31, 2022 · 4 comments
Closed

Doesn't work in React 18 #23

hidaytrahman opened this issue Oct 31, 2022 · 4 comments

Comments

@hidaytrahman
Copy link

hidaytrahman commented Oct 31, 2022

Tried to load both parser.


Module not found: Error: Can't resolve 'buffer' in 'learn/node_modules/react-html-parser/node_modules/htmlparser2/lib'

BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.
This is no longer the case. Verify if you need this module and configure a polyfill for it.

If you want to include a polyfill, you need to:
	- add a fallback 'resolve.fallback: { "buffer": require.resolve("buffer/") }'
	- install 'buffer'
If you don't want to include a polyfill, you can use an empty module like this:
	resolve.fallback: { "buffer": false }
@masroorejaz
Copy link
Owner

I haven't tested it with React 18 as of now.

But what I have Googled so far I think the issue lies somewhere else. Try installing these two npm and let me know if this resolves your issue:

npm install assert --save
npm install buffer --save

@hidaytrahman
Copy link
Author

Thank you @masroorejaz. Is there any plan to remove these dependencies

@hidaytrahman
Copy link
Author

Closing this with the implementation of React 18 (hooks)

import {
  loadCaptchaEnginge,
  LoadCanvasTemplate,
  LoadCanvasTemplateNoReload,
  validateCaptcha,
} from "react-simple-captcha";

loadCaptchaEnginge(6) (You can change 6 to the number of captcha characters you want) in useEffect()

  useEffect(() => {
    loadCaptchaEnginge(6);
  }, []);

@masroorejaz
Copy link
Owner

Thank you @masroorejaz. Is there any plan to remove these dependencies

You are most welcome. Will see in the future.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants