marxist.space icon indicating copy to clipboard operation
marxist.space copied to clipboard

Filterable database of resources for Marxists/Marxist-Leninists.

marxist.space

A ProleSoft project.

Abandoned

Please feel free to fork, use the db in your own project, or do whatever you want; I'm archiving this because I don't have the time to maintain it.

Adding Resources

First please search db.yml to make sure what you want to add isn't already in there. If it is, and you couldn't find it because the tags were incomplete or incorrect or the title or description were incorrect, please change those instead.

Otherwise, add your links to the bottom of db.yml. This is the type of a resource:

interface Resource {
  href: string
  title: string
  tags: string[]
  description?: string
}

An example would be:

resources: # this line is already there, needs to stay at the top
  - href: https://example.com
    title: Example Domain
    description: It's an Example # description is optional
    tags:
      - best
      - website

Developing

Run a local web server and open in the browser. For example, npx luvi or serve-static would work.

git clone [email protected]:prolesoft/marxist.space.git
cd marxist.space
# run your prefered local development server

Releasing

  • Merge or push changes, that's it! If making real code changes, please tag appropriately using npm version, and run npm t to double-check db.yml.

Contributing

See CONTRIBUTING and the open issues.