You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seperate the project into two different parts, the api and the frontend. The API would look something like this:
localoppm=require('oppm')
oppm.installPackage('foo')
oppm.removePackage('bar')
oppm.upgradePackage('moo')
oppm.installedPackages() -- returns table of installed packages. version number is set to installed versionoppm.allPackages() -- returns list of all packages in local cache. version number is set to latest according to cacheoppm.updateCache() -- downloads latest repository versions
returned lists of packages are in this format:
{
["foo"] = {description="this is a random package", version='1.0', url='...'}
}
or something like that.
The text was updated successfully, but these errors were encountered:
Seperate the project into two different parts, the api and the frontend. The API would look something like this:
returned lists of packages are in this format:
or something like that.
The text was updated successfully, but these errors were encountered: