How to Install and Uninstall perl-Dancer2 Package on openSuSE Tumbleweed

Last updated: October 06,2024

1. Install "perl-Dancer2" package

This guide covers the steps necessary to install perl-Dancer2 on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Dancer2

2. Uninstall "perl-Dancer2" package

This is a short guide on how to uninstall perl-Dancer2 on openSuSE Tumbleweed:

$ sudo zypper remove perl-Dancer2

3. Information about the perl-Dancer2 package on openSuSE Tumbleweed

Information for package perl-Dancer2:
-------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Dancer2
Version : 1.1.0-1.2
Arch : noarch
Vendor : openSUSE
Installed Size : 1.1 MiB
Installed : No
Status : not installed
Source package : perl-Dancer2-1.1.0-1.2.src
Upstream URL : https://metacpan.org/release/Dancer2
Summary : Lightweight yet powerful web application framework
Description :
Dancer2 is the new generation of Dancer, the lightweight web-framework for
Perl. Dancer2 is a complete rewrite based on Moo.
Dancer2 can optionally use XS modules for speed, but at its core remains
fatpackable (packable by App::FatPacker) so you could easily deploy Dancer2
applications on hosts that do not support custom CPAN modules.
Dancer2 is easy and fun:
use Dancer2;
get '/' => sub { "Hello World" };
dance;
This is the main module for the Dancer2 distribution. It contains logic for
creating a new Dancer2 application.