Metadata-Version: 2.1
Name: playwright-nodejs
Version: 0.0.2
Summary: There is a Node.js environment in playwright, why not just use it?
Author-email: Shi Yz <yz.shi@outlook.com>
Project-URL: Homepage, https://github.com/lordqyxz/playwright_nodejs
Project-URL: Bug Tracker, https://github.com/lordqyxz/playwright_nodejs/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Description

There is a Node.js environment in playwright, why not just use it?

# example

```python
from pathlib import Path

from playwright_nodejs import Nodejs

source = Path('test.js')
js = "console.log(result)"
re = Nodejs(source=source).call(js).exec()
print(re)
```
