Awesome
spartan
<a href="https://spartan.ng" target="_blank"> <img alt="A spartan shield" width="200px" src="./spartan.svg" title="Spartan logo"/> </a>Welcome to the spartan mono-repo. This Nx repository holds both the spartan/stack and spartan/ui libraries.
Important: This is a work in progress, and we update the README as major development efforts are started.
The 300 spartans
All of spartan is an MIT-licensed open source project with its ongoing development made possible by contributors and sponsors.
Our initial 300 contributors and sponsors are featured here and on the front page of spartan.ng
- goetzrobin
- elite-benni
- thatsamsonkid
- mihajm
- ajitzero
- arturgawlik
- deepakrudrapaul
- evanfuture
- AdditionAddict
- Altamimi-Dev
- ferat
- jeremy-js-devweb
- heddendorp
- tutkli
- Pascalmh
- okkindel
- marcjulian
- oidre
- nartc
- santoshyadavdev
- markostanimirovic
- theo-matzavinos
- jkuri
- dongphuong0905
- DominikPieper
- brandonroberts
- izikd-
- ryancraigmartin
- gaetanBloch
- gergobergo
- rpacheco124
- benjaminforras
- jstnjs
- r3ps4J
- Celtian
- miljan-code
- alexciesielski
- ty-ler
- m-risto
- badsgahhl
- monacodelisa
- tomdev9
- ragul1697
- snydertechnologies
- kkamman
- i-am-the-slime
- DevWedeloper
- mrsofiane
- mateoetchepare
- DonaldMurillo
- toniskobic
- eneajaho
- Den-dp
- 0xfraso
- Muneersahel
- danilolmc
- tomalaforge
- canserkanuren
- cjosue15
- hirenchauhan2
- Roguyt
- tsironis13
- 0xfraso
- guillermoecharri
- ValentinFunk
- Femi236
- dineshkp
- robingenz
spartan/ui
spartan/ui is our effort to port the incredible shadcn/ui project over to the Angular ecosystem.
The idea is to create un-styled primitives similar to Radix with the help of the Angular CDK and other proven community solutions And then add the beautiful shadcn styles with primitives (and components where necessary).
You can find all UI primitives in the libs/ui
folder.
Each primitive is made up off an un-styled brain
library, which provides all functionality and a helm
library, which adds the styles.
There's also a libs/cli
folder, which contains the Nx-plugin & Angular CLI code that allows users to add spartan/ui to their Nx or Angular workspace in a simple way.
Install Dependencies
Run bun install
to install the dependencies of this project.
Development with storybook
A storybook project is set up and is the primary way to develop UI components. You can run it with:
bun run storybook
At the root of each primitive's folder, e.g. libs/ui/accordion
you will find a stories file, e.g, accordion.stories.ts
.
Use these files to add stories and drive development of the primitives.
Testing
spartan uses Jest for tests. To test all projects locally, run the following command from the root folder:
bun run test
e2e testing
Cypress e2e testing is set up to run on the storybook. You can run it with:
bun run e2e
To add your own e2e
tests add them to the apps/ui-storybook-e2e
application.
Progress (37/43)
We finished porting over 37/43 UI primitives. See a more detailed breakdown here!
spartan/stack
An example application running on Supabase, Drizzle, Analog, tRPC, Tailwind, Angular, and Nx. It also serves as the documentation page introducing the stack and UI library.
Follow the directions in the official documentation to set up your own project: https://www.spartan.ng/stack/overview
Example App
In the apps
folder of this repository, you can also find an example application of the spartan stack.
It also serves as the documentation page for this project.
For now. The goal is to move the docs to Astro.
Follow the directions below to get it up and running:
Prerequisites
- You will need
bun
as your package manager. - You will need to set up a Supabase account (it's free)
- You will need NodeJs installed. The version I have working is
20.17.0
.
Development server
Then you can run the following command:
bun nx serve app
or
bun run dev
for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.
Database
We use Drizzle to connect to a Supabase instance for the example app.
Add an .env
file to your repo with the following contents:
Add a .env
file at the root of your Nx workspace and add the connection string like so:
DATABASE_URL="postgresql://postgres:[YOUR-PASSWORD]@db.[YOUR-SUPABASE-REFERENCE-ID].supabase.co:5432/postgres?schema=public"
And make sure to run the following script in your Supabase editor to set up the necessary tables:
create table
public.note (
id bigserial,
title text not null,
content text null,
created_at timestamp with time zone null default current_timestamp,
constraint notes_pkey primary key (id)
) tablespace pg_default;
[!NOTE] >
.env
should be added to.gitignore
Understand this workspace
Run bun nx graph
to see a diagram of the dependencies of the projects.
Further help
Reach out to me on Twitter or GitHub if you run into any issues.