Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

uranio-cli

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uranio-cli

Uranio command line interface

  • 0.0.53
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-40%
Maintainers
1
Weekly downloads
 
Created
Source

Uranio CLI

Uranio command line interface.

Table of Contents

  • What is it
  • Installation
  • Usage
  • Commands
  • Getting started
  • How to develop

What is it

Uranio CLI is the only package you need in order to work with Uranio.

Uranio is a framework that helps you build CRUD API.

Uranio can be installed as one of the following repo: core, api, trx, adm.

Each repo includes the previous one.

uranio repos

Core

Uranio Core generates classes needed to interact with the database.

Uranio can run the following databases: MongoDB // More in the future.

Api

Uranio API run a service with CRUD API.

Uranio can run the API on Express.js or on Netlify.

TRX

Uranio TRX creates Hooks that can be used to query the API.

ADM

Uranio Admin creates a full Administration Panel that interact with the API.

Installation

Uranio CLI requires Node.js, version 14 or above. To install uranio-cli, run the following command from any directory in your terminal:

npm install uranio-cli -g

or if you are using yarn

yarn global add uranio-cli

When using the CLI in a CI environment we recommend installing it locally as a development dependency, instead of globally. To install locally, run the following command from the root directory of your project:

npm install --save-dev uranio-cli

or if you are using yarn

yarn add --dev uranio-cli

Usage

Installing the CLI globally provides access to the uranio command.

uranio [command]

Run help for detailed information about CLI commands

uranio help
Shortcut
urn [command]

Commands

init
uranio init
Flags
  • -s --root (string) - Set project root. If empty Uranio will auto detect the closest repo.
  • -r --repo (string) - Set Uranio repo [core, api, trx, adm]
  • -f --force (boolean) - Run without prompts.
  • -d --deploy (string) - Set deploy [express, netlify]
  • -p --pacman (string) - Set package manager [npm, yarn]
  • -k --docker (boolean) - Compile and run inside a Docker container - Docker must be installed on the machine.
  • --docker_db (boolean) - Run a DB in a Docker container - Docker must be installed on the machine.
  • --db (string) - Set docker DB [mongo] - Docker must be installed on the machine.

This command initialize the repository. It will download and install all dependencies and copy all the files needed in order to start developing.

dev
uranio dev

This command starts a local development server.

Subcommanddescription
dev:serverRun development only for server
dev:clientRun development only for client
deinit
uranio deinit

This command deletes everything uranio created and return the repo in its initial state.

info
uranio info

This command prints the information uranio was initialized with.

help
uranio help

This command prints the list of all commands, parameters and options.

version
uranio version

#or

uranio

This command prints uranio-cli version.

Output options

  • -v --verbose (boolean) - log in verbose mode.
  • -u --debug (boolean) - log in debug mode.
  • -n --hide (boolean) - do not output log.
  • -b --blank (boolean) - log with no colors.
  • -w --fullwidth (boolean) - log in full width.
  • -x --prefix (string) - set a log prefix.
  • -t --time (boolean) - log with timestamp.
  • -a --context (boolean) - log with context.
  • -l --filelog (boolean) - save log on file.
  • -i --spin (boolean) - log with spinner.
  • -e --native (boolean) - log in native mode.
  • -c --color_log (string) - log color.
  • -o --color_verbose (string) - verbose log color.
  • -q --color_debug (string) - debug log color.

Getting started

Change directory to your npm repo:

cd /path/to/my/repo

If not already, run:

npm init
#or
yarn init

Then initialize Uranio with:

uranio init -vu

The command will prompt with questions regarding the repository you want to initialize.

  • Choose the package manager [yarn, npm]
  • Choose if you want to run and compile inside a Docker container.
  • Choose if you want Uranio to create a Docker container with a database.
  • If the previous answer was affirmative, choose the database type.
  • Choose the uranio module you want to use: [core, api, trx, adm]
  • If the previous answer was api or above, choose how you want to deploy the service [express, netlify]

This might take a while, depending on your internet connection.

After it is done, your repo is ready for development.

In order to start developing you will need to create and run a development server. Run:

uranio dev

Here you will see all the logs, also it will print the IP of the client in the case of the adm module.

Now you can start developing.

How to develop

Uranio can work by developing only one file. The file is /src/book.ts.

The file /src/book.ts must export an object called atom_book of type uranio.types.Book;

Each key of the object will be a relation in the database.

For example:

import uranio from 'uranio';

export const atom_book:uranio.types.Book = {
	product: {
		...
	}
}

creates a product relation and all the API CRUD call for the relation.

Uranio already creates the following relations:

Core
  • superuser
  • user
  • group
  • media
Api
  • request
  • error
Admin
  • setting

The value of each key is of type: uranio.types.Book.Definition.

//type Book.Definition

properties: Book.Definition.Properties
authenticate?: boolean
connection?: ConnectionName
plural?: string
security?: Book.Definition.Security

For example:

...
product:{
	plural: 'products',
	security: {
		type: uranio.types.BookSecurityType.UNIFORM,
		_r: uranio.types.BookPermissionType.NOBODY
	},
	properties: {
		title: {
			type: uranio.types.BookPropertyType.TEXT,
			label: 'Title'
		},
		price: {
			type: uranio.types.BookPropertyType.FLOAT,
			label: 'Price'
		}
	}
}

Type Book.Definition.Properties is a list of all the relation key.

Each key is of type Book.Definition.Property:

//type Book.Definition.Property

Property.ID |
Property.Text |
Property.LongText |
Property.Email |
Property.Integer |
Property.Float |
Property.Binary |
Property.Encrypted |
Property.Day |
Property.Time |
Property.SetString |
Property.SetNumber |
Property.EnumString |
Property.EnumNumber |
Property.Atom |
Property.AtomArray;

Each property type has the following common properties:

type: BookPropertyType
label: string
optional?: boolean
hidden?: boolean
unique?: boolean
default?: any
on_error?: (old_value: any) => any

BookPropertyType can be one of the following

// BookPropertyType

ID = 'ID',
TEXT = 'TEXT',
LONG_TEXT = 'LONG_TEXT',
EMAIL = 'EMAIL',
INTEGER = 'INTEGER',
FLOAT = 'FLOAT',
BINARY = 'BINARY',
ENCRYPTED = 'ENCRYPTED',
DAY = 'DAY',
TIME = 'TIME',
ENUM_STRING = 'ENUM_STRING',
ENUM_NUMBER = 'ENUM_NUMBER',
SET_STRING = 'SET_STRING',
SET_NUMBER = 'SET_NUMBER',
ATOM = 'ATOM',
ATOM_ARRAY = 'ATOM_ARRAY'

Keywords

FAQs

Package last updated on 15 Mar 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc