Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidcavazos/functional-vm
Functional Virtual Machine
https://github.com/davidcavazos/functional-vm
Last synced: 22 days ago
JSON representation
Functional Virtual Machine
- Host: GitHub
- URL: https://github.com/davidcavazos/functional-vm
- Owner: davidcavazos
- License: mit
- Created: 2020-07-01T22:50:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-24T20:29:15.000Z (over 4 years ago)
- Last Synced: 2024-10-30T00:49:16.441Z (2 months ago)
- Language: Elm
- Size: 188 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# 🌻 🐝 Functional Virtual Machine 🐝 🌻
## Before you begin
### Installing Elm
`dbee` is written in Elm.
Elm is usually for front-end development,
but since it compiles to Javascript,
we want to run it in Node as a server application.Follow the official guide to
[install Elm](https://guide.elm-lang.org/install/elm.html).
It's very easy, there are installers/instructions for Mac, Linux and Windows.Then, check your Elm installation.
```sh
elm --version
```### Installing Node
We only need Node to run the Javascript app as a server.
Follow the instructions to
[install nvm](https://github.com/nvm-sh/nvm#installing-and-updating).```sh
# Verify you have nvm.
nvm --version# Install the latest version of node.
nvm install node# Make sure you are pointed to nvm's node version.
which node
# This could look something like:
# /Users//.nvm/versions/node/v14.4.0/bin/node
```## Contributing
Contributions are welcome! For instructions on how to contribute,
please check the [Contribution](CONTRIBUTING.md) guide.