All Projects → vercel → Title

vercel / Title

Licence: mit
A service for capitalizing your title properly

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Title

cyborg
Acceleration Management. Mirror of code maintained at opendev.org.
Stars: ✭ 47 (-86.34%)
Mutual labels:  service
Trove
OpenStack Database As A Service (Trove). Mirror of code maintained at opendev.org.
Stars: ✭ 269 (-21.8%)
Mutual labels:  service
Androidcomponentplugin
Android上简单实现四大组件的插件化,供学习使用
Stars: ✭ 316 (-8.14%)
Mutual labels:  service
Learn-ServiceMesh-Workshop
Labs for Kubecon NA Workshop on Service Mesh with Cloud PKS
Stars: ✭ 13 (-96.22%)
Mutual labels:  service
stucco-js
GraphQL server. JavaScript runtime for stucco - GraphQL as a Service
Stars: ✭ 22 (-93.6%)
Mutual labels:  service
Php Ide Serenata
Atom IDE package that integrates the Serenata server to provide PHP code assistance
Stars: ✭ 277 (-19.48%)
Mutual labels:  service
comrade-dev
Comrade is a job scheduler&manager service.
Stars: ✭ 69 (-79.94%)
Mutual labels:  service
Ironic
A service for managing and provisioning Bare Metal servers. Mirror of code maintained at opendev.org.
Stars: ✭ 338 (-1.74%)
Mutual labels:  service
Travis Buddy
🚀 Seamless integration between TravisCI and GitHub
Stars: ✭ 262 (-23.84%)
Mutual labels:  service
Azure Service Operator
Azure Service Operator allows you to create Azure resources using kubectl
Stars: ✭ 291 (-15.41%)
Mutual labels:  service
mangium
(Needs contributors) Service/project manager for developers/small teams
Stars: ✭ 12 (-96.51%)
Mutual labels:  service
prometheus-hetzner-sd
Prometheus Service Discovery for Hetzner
Stars: ✭ 15 (-95.64%)
Mutual labels:  service
Django Service Objects
Service objects for Django
Stars: ✭ 289 (-15.99%)
Mutual labels:  service
deckmaster
An application to control your Elgato Stream Deck on Linux
Stars: ✭ 106 (-69.19%)
Mutual labels:  service
K8sapp
Application template that satisfies the Kubernetes requirements (Golang)
Stars: ✭ 321 (-6.69%)
Mutual labels:  service
yurpc
high-performance RPC framework.
Stars: ✭ 59 (-82.85%)
Mutual labels:  service
Quicklib
Quick development library (AutoMapper, LinQ, IOC Dependency Injection, MemoryCache, Scheduled tasks, Config, Serializers, etc) with crossplatform support for Delphi/Firemonkey (Windows,Linux,OSX/IOS/Android) and freepascal (Windows/Linux).
Stars: ✭ 274 (-20.35%)
Mutual labels:  service
Meiam.system
.NET 5 / .NET Core 3.1 WebAPI + Vue 2.0 + RBAC 企业级前后端分离权限框架
Stars: ✭ 340 (-1.16%)
Mutual labels:  service
Go Svc
Go Windows Service wrapper that plays nice with Linux.
Stars: ✭ 323 (-6.1%)
Mutual labels:  service
Magnum
Container Infrastructure Management Service for OpenStack. Mirror of code maintained at opendev.org.
Stars: ✭ 289 (-15.99%)
Mutual labels:  service

Title

This package correctly capitalizes your titles as per The Chicago Manual of Style. Furthermore, all of Vercel's product names are capitalized properly as well.

Usage

Firstly, install the package:

yarn add title

Then load it and convert any input:

const title = require('title')

title('tHe cHicaGo maNual oF StyLe')

// Will result in:
// "The Chicago Manual of Style"

You can even pass words that should be capitalized as specified:

title('FaCEbook is great', {
  special: [ 'facebook' ]
})

// Will result in:
// "facebook is great"

That's it!

Command Line

You can also convert titles in the command line, if you want. Install the package globally:

yarn global add title

Next, run it:

title "tHe cHicaGo maNual oF StyLe"

# Will result in:
# "The Chicago Manual of Style"

To see all available options, run:

title -h

Contributing

  1. Fork this repository to your own GitHub account and then clone it to your local device
  2. Uninstall title if it's already installed: yarn global remove title
  3. Link it to the global module directory: yarn link

After that, you can use the title command everywhere.

Author

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].