Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eggy115/purescript
Purescript
https://github.com/eggy115/purescript
pure-script purescript purescript-code purescript-examples purescript-lang purescript-language purescript-programs purescript-scripts
Last synced: 3 days ago
JSON representation
Purescript
- Host: GitHub
- URL: https://github.com/eggy115/purescript
- Owner: Eggy115
- License: gpl-3.0
- Created: 2023-04-01T19:43:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-04-12T11:11:07.000Z (over 1 year ago)
- Last Synced: 2024-11-16T22:16:50.895Z (about 1 month ago)
- Topics: pure-script, purescript, purescript-code, purescript-examples, purescript-lang, purescript-language, purescript-programs, purescript-scripts
- Language: PureScript
- Homepage: https://github.com/Eggy115/Purescript
- Size: 32.2 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# PureScript
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
This repository contains a collection of PureScript programs and scripts.
## Table of Contents
- [What is PureScript](#what-is-purescript)
- [Installation](#installation)
- [Installing PureScript](#installing-purescript)
- [Windows](#windows)
- [Linux](#linux)
- [macOS](#macOS)
- [Installing Repository](#installing-repository)
- [Usage](#usage)
- [Running PureScript Programs](#running-purescript-programs)
- [Using Spago](#using-spago)
- [Contributing](#contributing)
- [License](#license)## What is PureScript
PureScript is a strongly-typed functional programming language that compiles to JavaScript. It is inspired by Haskell and provides a simple and expressive syntax for writing functional code. PureScript's static type system helps catch many common programming errors at compile-time, making it a powerful language for building robust and maintainable applications.
PureScript is commonly used for frontend web development, where it can be used to build user interfaces with libraries like React or as a replacement for JavaScript in building server-side applications with Node.js. It is also used in other domains like data science, machine learning, and game development.
## Installation
### Installing PureScript
These are the general steps to install PureScript on different platforms. However, the exact steps may vary depending on the specific operating system and version you are using. It's always a good idea to refer to the official documentation for your platform to get more detailed installation instructions.
#### Windows
1. Download and install Node.js from the official Node.js website.
2. Open a command prompt or PowerShell window and run the following command to install PureScript globally:```
npm install -g purescript
```3. Once the installation is complete, you can use any text editor or IDE (Integrated Development Environment) to write and compile PureScript code.
#### Linux
1. Install Node.js using the package manager for your Linux distribution. For example, on Ubuntu, you can use the following command:
```
sudo apt-get install nodejs
```2. Install PureScript globally using npm, the Node.js package manager:
```
npm install -g purescript
```3. Once PureScript is installed, you can use any text editor or IDE to write and compile PureScript code.
#### macOS
1. Install Node.js using a package manager like Homebrew. Open a terminal and run the following command:
```
brew install node
```2. Install PureScript globally using npm, the Node.js package manager:
```
npm install -g purescript
```3. Once PureScript is installed, you can use any text editor or IDE to write and compile PureScript code.
### Installing Repository
You can download individual files, copy & paste code, or clone the repository
```
git clone https://github.com/YourUsername/PureScript.git
```
## Usage### Running PureScript Programs
1. Clone the repository. If you have written your own programs, save the program with a `.purs` file extension.
2. Open a terminal or command prompt and navigate to the directory where the PureScript program is saved.
3. Run the following command to compile and run the PureScript program:```
purs compile path/to/program.purs -o output
```### Using Spago
[Spago](https://github.com/spacchetti/spago) is a popular package manager and build tool for PureScript projects. You can use Spago to manage dependencies, build, and run your PureScript programs in a more organized and efficient way. Here are some basic commands you can use with Spago:
- Install Spago globally (if not already installed):
```
npm install -g spago
```- Initialize a new Spago project:
```
spago init
```- Install dependencies listed in your `spago.dhall` file:
```
spago install
```- Build your PureScript project:
```
spago build
```- Run your PureScript program:
```
spago run
```For more information on using Spago, refer to the [official documentation](https://github.com/spacchetti/spago#readme).
## Contributing
Contributions are always welcome! Follow these steps to contribute:
1. Fork the repository and make your changes.
2. Submit a pull request with your changes.
3. Create an issue if you find a bug or have a feature request.Please make sure to adhere to the [code of conduct](CODE_OF_CONDUCT.md) and the [contributing guidelines](CONTRIBUTING.md).
## License
This repository is licensed under the [GPLv3 License](https://www.gnu.org/licenses/gpl-3.0.html). See the [LICENSE](LICENSE) file for more information.