Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sandstone-mc/sandstone
Sandstone | Next Generation Framework for Minecraft
https://github.com/sandstone-mc/sandstone
datapack library minecraft resourcepack sandstone typescript
Last synced: about 1 month ago
JSON representation
Sandstone | Next Generation Framework for Minecraft
- Host: GitHub
- URL: https://github.com/sandstone-mc/sandstone
- Owner: sandstone-mc
- License: mit
- Created: 2020-05-28T09:48:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T16:34:40.000Z (5 months ago)
- Last Synced: 2024-11-11T18:52:33.399Z (about 1 month ago)
- Topics: datapack, library, minecraft, resourcepack, sandstone, typescript
- Language: TypeScript
- Homepage: https://sandstone.dev/
- Size: 3.78 MB
- Stars: 173
- Watchers: 7
- Forks: 16
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-mcc - Sandstone - a javascript library for datapacks (Uncategorized / Uncategorized)
README
# Sandstone
![GitHub](https://img.shields.io/github/license/sandstone-mc/sandstone)
![GitHub last commit](https://img.shields.io/github/last-commit/sandstone-mc/sandstone?color=blue)
![Version](https://img.shields.io/badge/version-alpha-success)
![Discord](https://img.shields.io/discord/800035701243772969?color=%237289DA&label=discord)Sandstone is a Typescript library for Minecraft Datapacks, Resource Packs, etc. It allows easy creation, debug and sharing of Minecraft functions, loot tables, predicates etc...
Interested? Join our Discord:
[![Discord](https://invidget.switchblade.xyz/4tzM5aXDRe)](https://discord.gg/4tzM5aXDRe)
## Features
## 💻 Perfect autocompletion & IDE support
Sandstone tells you what a command expects, and autocompletes complicated arguments for you.
You don't need to remember commands syntax anymore.
![autocomplete](https://raw.githubusercontent.com/sandstone-mc/sandstone/4d3d74210b74ccf0bb807b90c35c1920ce1aa44a/docs/readme/autocomplete.gif)
This autocompletion works for all resources: commands, predicates, loot tables, advancements...
## 📂 Better organisation of resources
You can have multiple functions, advancements, loot tables per files - or you can keep the vanilla organization, and have only 1 per file. Sandstone allows you to organize your packs as you prefer, without sticking to Mojang's conventions.You also benefit from all the capabilities of a real programming language: multiline comments, indentation, documentation...
## 🚀 Useful and heavily optimized abstractions
Sandstone includes common and heavily optimized abstractions:
- Control statements, with `if`, `else if` and `else`
- Boolean logic, with `or`, `and` and `not`
- Loops, with `while` and `for`
- Sleep statement, which waits a certain time before running the next commandsThese statements are most of the time more optimized than hand-written code, since they switch between different implementations to get the fastest one. They have been studied and designed for performance.
However, you stay free: you can keep using only vanilla commands, if you prefer - Sandstone does not get in your way.
## 👐 Easy to share
Sharing commands has **never been easier**. Just publish your functions on NPM, and everyone can use them to improve their own packs. Whether it's some common code like raycasting, or some new abstractions like better `/tellraw`, the Sandstone ecosystem grows by the day.You can finally stop reinventing the wheel.
# Supporting Sandstone
If you want to support Sandstone, the simplest way is to star the repository! It's actually very encouraging.
[![GitHub Repo stars](https://img.shields.io/github/stars/sandstone-mc/sandstone?style=social)](https://github.com/sandstone-mc/sandstone/blob/master/README.md)
# Getting started
See the [Getting Started](https://sandstone.dev/docs) section on [sandstone.dev](https://sandstone.dev/) to start using Sandstone!