-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
No html file generated #172
Comments
It is a normal nim compiler behavior, aren't it? |
I guess I mistakenly thought it would generate a |
something like <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Fidget example</title>
</head>
<body>
<script src="areas.js"></script>
</body>
</html> |
That is correct Nim does not generate HTML files. You got to make a minimal one yourself. Closing this issue, feel free to reopen if you still have questions. |
@treeform this is an issue with the README. It says:
So you'd think there would be an html file. Maybe it would be helpful to just add that bit of html above to the doc to make it a bit easier on newcomers? |
You right its probably is my issue. If you follow the emscriten process it generates the html file, if you follow the simple nim js it does not. I need to figure out the best way to do this. |
When running
nim js areas.nim
, I only get a js file, no html.The text was updated successfully, but these errors were encountered: