Skip to content

Website returning information on Latin vocabulary using Next.js. There are lists of rhymes, tables of inflected forms, links to other online resources, and several other features.

Notifications You must be signed in to change notification settings

DuncanRitchie/velut

Repository files navigation

velut

https://www.velut.co.uk

velut is an online Latin rhyming dictionary using Next.js and MongoDB.

Anyone with an interest in Latin can get something out of velut, but it is aimed at people with at least a general understanding of the language and how poetry is composed in the ancient quantitative (length-based) metres and in more modern qualitative (stress-based) metres. Really, though, it is aimed at me, as a personal pet project that is now pretty elaborate!

This GitHub repo is publicly visible. The site is hosted by Fly from the main branch, at https://www.velut.co.uk.

Functionality

On visiting the homepage, you are invited to type in a Latin word, and select the type of rhymes you want to search for. “Types of rhyme” here also include anagrams, words that scan the same metrically, or words with the same consonants in order (consonyms).

This will return words that rhyme with the input, as well as information about the “lemmata” of the input — that is, the headwords that the word can be an inflected form of. The lemmata information includes the part of speech, definitions, any notes or transliterations, the inflected forms, and lemmata that I think have the same etymology (cognates). At the bottom of the page are links to external online resources (such as Logeion and Wiktionary) that may have more details about the input word.

All my Latin words are macronized, meaning every long vowel is marked with a macron, but you can input a word without the macra, or with hyphens instead of the macra, and velut will find the word you mean, if I have it. For example, you can search for “vocabulorum”, “voca-bulo-rum”, or “vocābulōrum”, and get results for “vocābulōrum”. Similarly, proper nouns and related adjectives are capitalised, but the input is not case-sensitive except in instances of ambiguity (eg, between “Cōs” the Greek island and “cōs” meaning “whetstone”).

Other sections of the site let you find:

Architecture

The velut website (in this repository) is a Next.js site that reads from two MongoDB collections in accordance with what the user searches for. None of its functionality requires client-side JavaScript, because the site is entirely server-side–rendered. However, the Multi-word page (www.velut.co.uk/multiword) uses client-side rendering if possible, as does the Search component.

Vocabulary data and scripts for processing them are in separate repos. I have a private Json file listing all lemmata (dictionary headwords), and public JavaScript scripts that process the Json into more Json, and that is what goes into the two MongoDB collections.

The scripts include my:

  • Inflector, which generates inflected forms for all lemmata; and
  • Word Data Generator, which generates phonetic and other information about all words.

There will also be a script that converts the output of the Inflector into the format needed for the Word Data Generator. This will enable all inflected forms to be words that you can search for and see rhymes for on the velut website.

The two MongoDB collections are:

  • lemmata, in which every document (database record) is a “lemma” with information from the source Json file plus the inflected forms from the Inflector; and
  • words, in which every document is a “word” with information from the Word Data Generator.

There’s also a MongoDB collection called summary, but this is temporary.

Old version with Create React App

When I first made the velut website, it was a single-page application that had the same functionality, but using an Express server on the backend and client-side–rendered React.js on the frontend (using Create React App).

The code was on a branch called mern, whose last commit was 413ddae4 before I merged it into main (using the ours strategy so it didn’t change the main code, which was fully Next.js by that point).

(MERN stands for “MongoDB, Express, React, Node”. Technically the Next.js version is also MERN, because Next.js uses an Express server internally, but with the client-side–rendered version I wrote code that directly — expressly?! — calls Express, so the branchnames “main” and “mern” made sense to me.)

Excel and de-Excellation

velut started life as an Excel file, which over the years grew to more than 90MB in size. Much of the word information you see on the website is stored in it.

In 2019, I created the website to show the data publicly. But I still relied heavily on Excel for generating, checking, and storing the data. I added to the Excel file frequently, converted the data to Json — using a webpage I made specifically for this purpose — and used mongoimport to replace my two MongoDB Atlas collections.

I am now well into the process of replacing Excel with my custom Json, JavaScript, and MongoDB. It feels good to not have to open up a 90MB file!

My current stage is manually reviewing the output of my Inflector script (inflection-tables for all lemmata). This stage may take another few months because accuracy is important to me and I’m reviewing each of my 14,127 lemma individually. So far, I have reviewed most of the lemmata and published their inflection-tables to the live website.

The words collection, at the moment, consists of Latin words that I had in Excel, fed through the Word Data Generator. This means that words that I didn’t have in Excel cannot be searched for on the velut website — even if they appear in the inflection-tables that the Inflector creates. Eventually, I will be able to use the Inflector’s output for the input to the Word Data Generator (via a new script I alluded to earlier). That will mean every form in the inflection-tables will be in the words collection, and every form therefore will be a word that can be searched for on the website.

There’s still a lot of common Latin vocabulary that is not yet in the velut database, and that I’d like to include. But, that will have to wait. My priority is finishing my script for generating forms (or finishing checking that it’s all correct) and completing the new architecture without Excel.

For the details, see my plan of de-Excellation.

Screenshots

Website

Displayed below is the page for the word “opportūna”, showing that it is different to “opportūnā”, scans as long-long-long-short metrically, rhymes with words like “ūna” and “lūna”, and is a form of the lemma “opportūnus” (an adjective meaning “timely; suitable”). https://www.velut.co.uk/opportu-na.

“opportūna” on velut

Excel

(The velut Excel file is pretty much deprecated, but some screenshots here won’t hurt.)

The Excel file has nine sheets, of which four are shown below. The “words” sheet stores data on Latin words as plaintext. The “wordsform” sheet generates the data for the “words” sheet based on the inputs in columns B and C. The “lemmata” sheet stores data on Latin lemmata. The “output” sheet displays information (including rhymes and inflected forms) about whatever Latin word is typed in the orange cell.

Composite screenshot of four Excel sheets

Environment variables

For development, there is a .env.local file in the root directory. The file looks like this:

MONGODB_URI=mongodb://127.0.0.1:27017/velut-local?retryWrites=true&w=majority
NEXT_PUBLIC_SHOW_GENERATED_FORMS_FOR=Proper noun,Conjunction,Pronoun,Noun,Interjection,Preposition,Adverb,Adjective,Verb

(It’s not in version control in case I change the MongoDB connection string to point to the live database, which is obviously sensitive.)

In Next.js, environment variables beginning with “NEXT_PUBLIC” are accessible on the client-side. The NEXT_PUBLIC_SHOW_GENERATED_FORMS_FOR variable is a list of parts of speech; it exists because I’m currently transitioning the inflected forms that are displayed on the website. If a lemma belongs to a part of speech in the list, a full table of programmatically-generated forms is displayed for the lemma. Otherwise, the only forms displayed are those I manually added to velut.

In development, generated forms should be shown for all parts of speech, so I can review them. In production (ie, on the live website), generated forms for parts of speech that I have not reviewed are not shown.

To set an environment variable in production, I use the Fly command-line interface:

flyctl secrets set NEXT_PUBLIC_SHOW_GENERATED_FORMS_FOR="Proper noun,Conjunction,Pronoun,Noun,Preposition,Interjection,Adverb,Adjective"

Development cycle

The command I use to open a development server at http://localhost:3000/ is:

npm run dev

(There needs to be a .env.local file as explained under “Environment variables”.)

To redeploy, I simply push to the main branch on GitHub.

For how I edit the data with Json files and JavaScript scripts, see “Architecture” above.

My scripts to refresh the database (using mongoimport) are private, so as not to expose the MongoDB connection string.

Miscellanea

The name “velut” is an acronym for “Useful Tables of Excellent Latin Vocabulary”. Ironically, the backend dispatches queries to MongoDB collections rather than any tables in a relational database, and until recently the HTML contained no <table> tags.

All the words have been collated manually by me in my spare time. Yes, really. (For the visible tables of inflected forms, I’ve generated them programmatically, but reviewed them manually.) Therefore, many lemmata are not represented, and most of the lemmata that are represented do not have all possible inflected forms. (My plan for de-Excellation covers how I’m solving the latter.) If I’ve not included a word in velut, that doesn’t mean it’s not “good Latin”. Also true is the fact that some of the words in velut are not attested in surviving literature, but are reasonable inflected forms or are neologisms.

For more information, see https://www.velut.co.uk/about; for more information about me, see my website at https://www.duncanritchie.co.uk.

About

Website returning information on Latin vocabulary using Next.js. There are lists of rhymes, tables of inflected forms, links to other online resources, and several other features.

Topics

Resources

Stars

Watchers

Forks