How to display JS block without running it in Framework

I had my first go at Framework :wink: Very nice thank you.

I was also able to publish on github page easily by adding a .nojekyll file in the build folder.

My question is that if you want to echo some JS code block inside a page, it runs it automatically. Example here and gives a error : TypeError: Failed to resolve module specifier 'path'

The source code is here and is simply:

```js echo
import path from 'path';
import cheerio from 'cheerio';
import fs from 'fs';
...
```

How do you prevent it from running the code?
Thanks

1 Like
```js run=false
1 Like

Thank you, it is fixed!

@Fil I haven’t found it in the docs…maybe worth adding