npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

workplacex-cli

v3.51.100

Published

Create database applications with Angular 11, ASP.NET Core 5.0 and MS-SQL for Linux and Windows.

Downloads

626

Readme

WorkplaceX Framework

Build Status (github actions)

Build Status (travis)

Framework to create database applications based on Angular 11, Bootstrap, Bulma, ASP.NET Core 5.0 and SQL Server. Runs on Windows and Linux. Provides CI/CD pipeline.

Project page: WorkplaceX.org

Getting started

Prerequisites for Linux and Windows

Create new project in empty folder (for Linux use ./cli.sh instead of /.cli.cmd)

# Install WorkplaceX cli into an empty folder
npx workplacex-cli new

# Build everything
./wpx.cmd build

# Set database connection
./wpx.cmd config connectionString="Data Source=localhost; Initial Catalog=ApplicationDoc; User Id=SA; Password=MyPassword;"

# Deploy database
./wpx.cmd deployDb

# Start application
./wpx.cmd start

# Open browser to http://localhost:5000/

# Stop server on Linux
killall -g -SIGKILL Application.Server

Config

All configuration (DEV, TEST, PROD) is stored in file ConfigCli.json. Runtime configuration is automatically extracted and copied into ConfigServer.json.

More templates

Project Folder and File Structure

  • "Application/" (Application with custom business logic in C#)
  • "Application.Cli/" (Command line interface to build and deploy in C#)
  • "Application.Cli/DeployDb/" (SQL scripts to deploy to SQL server)
  • "Application.Database/" (From database generated C# database dto objects like tables and views)
  • "Application.Doc/" (Documentation images)
  • "Application.Server/" (ASP.NET Core to start application)
  • "Application.Website/" (Angular application)
  • "Framework/Framework/" (Framework kernel doing all the heavy work)
  • "Framework/Framework.Cli/" (C# Command line interface to build and deploy application)
  • "Framework/Framework.Doc/" (Documentation images)
  • "Framework/Framework.Test/" (Internal C# unit tests)
  • "ConfigCli.json" (Configuration file used by Application.Cli command line interface)
  • "ConfigServer.json" (Generated configuration used by Application.Server web server)

Version

Some versions to check:

node --version
v12.18.1

npm --version
6.14.5

dotnet --version
5.0.101

ng --version
Angular CLI: 11.0.3

For Windows:

git --version
git version 2.29.2.windows.2

$PSVersionTable.PSVersion
Major  Minor  Patch  PreReleaseLabel BuildLabel
-----  -----  -----  --------------- ----------
6      2      3

Update

Checklist to update framework to latest .NET, Angular, Bootstrap, Bulma: Update