Skip to content

Commit

Permalink
feat: create rescript-app-11
Browse files Browse the repository at this point in the history
  • Loading branch information
noshiro-pf committed Sep 7, 2024
1 parent 41efa85 commit 4508779
Show file tree
Hide file tree
Showing 19 changed files with 4,637 additions and 0 deletions.
29 changes: 29 additions & 0 deletions experimental/rescript-app-11/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# ReScript
/lib/
.bsb.lock
.merlin
40 changes: 40 additions & 0 deletions experimental/rescript-app-11/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# ReScript / Vite Starter Template

- [Installation](../../README.md)

This is a Vite-based template with following setup:

- [ReScript](https://rescript-lang.org) 11.0 with @rescript/react, [Core](https://github.com/rescript-association/rescript-core) and JSX v4
- ES6 modules (ReScript code compiled to `.res.mjs` files)
- Vite 4 with React Plugin (Fast Refresh)
- Tailwind 3

## Development

Run ReScript in dev mode:

```sh
npm run res:dev
```

In another tab, run the Vite dev server:

```sh
npm run dev
```

## Tips

### Fast Refresh & ReScript

Make sure to create interface files (`.resi`) for each `*.res` file.

Fast Refresh requires you to **only export React components**, and it's easy to unintenionally export other values that will disable Fast Refresh (you will see a message in the browser console whenever this happens).

### Why are the generated `.res.mjs` files tracked in git?

In ReScript, it's a good habit to keep track of the actual JS output the compiler emits. It allows quick sanity checking if we made any changes that actually have an impact on the resulting JS code (especially when doing major compiler upgrades, it's a good way to verify if production code will behave the same way as before the upgrade).

This will also make it easier for your Non-ReScript coworkers to read and understand the changes in Github PRs, and call you out when you are writing inefficient code.

If you want to opt-out, feel free to remove all compiled `.res.mjs` files within the `src` directory and add `src/**/*.res.mjs` in your `.gitignore`.
16 changes: 16 additions & 0 deletions experimental/rescript-app-11/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ReScript + Vite + React</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/Main.res.mjs"></script>
</body>

</html>
Loading

0 comments on commit 4508779

Please sign in to comment.