New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

light-task

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

light-task

A simple task application

latest
Source
npmnpm
Version
1.0.4
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

light-task

A simple task application

install

npm i -g light-task

NOTE:

When installing, the current working directory ( the cwd ) will be set as the database directory, and a database file light-task.sqlite will be created when the application run.

If the package is uninstalled, please manually removed the database file if needed.

When update the package, to keep the database location unchanged, please run the npm command at the same directory.

Framework

nodejs, express.

Deployment

* Web service
	* RESTful api
		* api document
	* database
		* sqlite
	* log
		* log/Y/M/Y-M-D.log
* Command tool
	* service control
		* unit test
	* pack/debug/release tool
	

Component

* web-server
* database
* control-tool

Databse & RESTful api

refer to task-service @ npm

Console tool

	npm run start		//to start
	npm run	start:dev		//to start in develope mode
	npm run stop		//to stop
	npm run status		//to get the status

	light-task ( same as command "node cli.js" )
	light-task start [--foreground]
	light-task stop
	light-task status

	light-task add "title" "datetime"
		"datetime": a year-first datetime string, e.g. "2022-12-5" or "2012/12/25"
	
	light-task list --all
	light-task list --expire today
	light-task list --expire 2012/12/5
	light-task list				//same as --expire today
	light-task list <id>		//list single record by id

	light-task done <id>		//set done flag by id

	light-task remove <id>		//remove record by id

CLI tool

light-task cli, v1.0.4

Usage: light-task command [--options]

command:
    start               start the service, in background.
        --foreground    start in foreground
    stop                stop the service
    status              check the service status

    backup [file]       backup database
    restore [file]      restore database

    add 'title' 'expire'
                        add a task.
                        'title': a title string
                        'expire': a year-first datetime string,
                                  e.g. '2022-12-5' or '2012/12/25'

    list                list tasks, same as '--expire all' if no option.
        <id>            list detail by task id
        --all           list all
        --expire today
                        list tasks that expire today
        --expire 'datetime'
                        list by an appointed expire datetime
        --expire [all]
                        list all not finished
    done <id>           set done flag by task id
    remove <id>         remove by task id

Swagger tool

Default at http://127.0.0.1:8071/swagger

Keywords

task

FAQs

Package last updated on 07 Jan 2024

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