Skip to content

Commit e32ff0a

Browse files
author
James Brundage
committed
release: Neocities 0.1 ( Fixes #1 )
1 parent 112a72b commit e32ff0a

File tree

2 files changed

+68
-1
lines changed

2 files changed

+68
-1
lines changed

Neocities.psd1

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
@{
2+
ModuleVersion = '0.1'
3+
RootModule = 'Neocities.psm1'
4+
Guid = 'd62958e7-1cc7-470b-bde3-da29e96579fd'
5+
Author = 'James Brundage'
6+
CompanyName = 'Start-Automating'
7+
Copyright = '2025 Start-Automating'
8+
Description = 'Neocities PowerShell - Personal Webpages in PowerShell'
9+
FunctionsToExport = @('Connect-Neocities','Get-Neocities','Set-Neocities','Remove-Neocities')
10+
AliasesToExport = @('Neocities')
11+
FormatsToProcess = @('Neocities.format.ps1xml')
12+
TypesToProcess = @('Neocities.types.ps1xml')
13+
PrivateData = @{
14+
PSData = @{
15+
Tags = @('neocities', 'PowerShell', 'Web', 'PowerShellWeb')
16+
ProjectURI = 'https://github.com/PowerShellWeb/NeoPS'
17+
LicenseURI = 'https://github.com/PowerShellWeb/NeoPS/blob/main/LICENSE'
18+
ReleaseNotes = @'
19+
> Like It? [Star It](https://github.com/PowerShellWeb/NeoPS)
20+
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
21+
22+
## Neocities 0.1
23+
24+
Initial Neocities module (#1):
25+
26+
* Get-Neocities (#2)
27+
* Set-Neocities (#3)
28+
* Remove-Neocities (#5)
29+
* Connect-Neocities (#4)
30+
31+
---
32+
'@
33+
}
34+
}
35+
}

README.md

+33-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,34 @@
1-
# Neocities
1+
## Neocities
2+
23
Manage Neocities with PowerShell
4+
5+
[https://neocities.org](Neocities) is a wonderful site for free personal webpages.
6+
7+
It's bringing back the ethos of old internet: one of the most popular free hosting services of the 90s was [geocities](https://en.wikipedia.org/wiki/GeoCities).
8+
9+
## The Neocities Module
10+
11+
Neocities is also the name a PowerShell module to manage Neocities (no official relation).
12+
13+
The Neocities module PowerShell is built atop the [neocities api](https://neocities.org/api).
14+
15+
### Installing and Importing
16+
17+
You can install the Neocities module by using the [PowerShell Gallery](https://powershellgallery.com)
18+
19+
~~~PowerShell
20+
Install-Module Neocities
21+
~~~
22+
23+
Once installed, you can import it with:
24+
25+
~~~PowerShell
26+
Import-Module Neocities -PassThru
27+
~~~
28+
29+
### Neocities Commands
30+
31+
* [Get-Neocities](docs/Get-Neocities.md) gets neocities content
32+
* [Set-Neocities](docs/Set-Neocities.md) sets neocities content
33+
* [Remove-Neocities](docs/Remove-Neocities.md) removes neocities content
34+
* [Connect-Neocities](docs/Connect-Neocities.md) connects with a credential and gives you an access token

0 commit comments

Comments
 (0)